Viewing 15 posts - 1,426 through 1,440 (of 2,463 total)
mirravi (8/18/2010)
what shal i do now? any suggestions.
uSe my second last post's query
August 18, 2010 at 9:54 pm
sushantkumar1984 (8/18/2010)
the general meaning of compression is compressing which is as the .bak file wrt the data files.
Something new to me :unsure:
August 18, 2010 at 6:59 am
mirravi (8/18/2010)
Its on Production , thats make me fear to run the query!!
STRANGE :w00t::w00t: , On production , you dont have MSDB backup.
August 18, 2010 at 6:45 am
mirravi (8/18/2010)
No i dont have MSDB back
take MSDB backup and
run the below script
USE [master]
GO
ALTER DATABASE [msdb] SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO
ALTER DATABASE [msdb] SET SINGLE_USER
GO
DBCC CHECKDB (msdb, REPAIR_ALLOW_DATA_LOSS)
GO
ALTER...
August 18, 2010 at 6:35 am
or in safer side , you can restore recent MSDB backup
August 18, 2010 at 5:38 am
mirravi (8/18/2010)
When i run DBCC CHECKDB onto MSDB , the follwing error ocuured.
Msg 8967, Level 16, State 216, Line 1
An internal error occurred in DBCC that prevented further processing. Contact...
August 18, 2010 at 5:37 am
mirravi (8/18/2010)
i ran the query, it displys an error, but done the back up successfully.
Processed 325512 pages for database 'PGCENTURION', file 'SBOEdenvaleIntegration_RSA' on file 1.
Processed 41 pages...
August 18, 2010 at 3:56 am
Anamika (8/17/2010)
Thanks for the inputs.
I've checked in 2005. the Script Procedure --> Create gives the correct modified SP name. But while creating from the mentioned script it...
August 18, 2010 at 3:24 am
Anamika (8/18/2010)
SELECT * FROM SYSOBJECTS WHERE XTYPE = 'P'
output of this query gives the new SP name.
My problem is while getting the create script for the same gets created in...
August 18, 2010 at 3:23 am
Anamika (8/17/2010)
Thanks for the inputs.
I've checked in 2005. the Script Procedure --> Create gives the correct modified SP name. But while creating from the mentioned script it...
August 18, 2010 at 12:07 am
sushant.ranahandol 23461 (8/17/2010)
don't forget to make the backup to happen in compress mode.
Compression in Sql 2005 ??
August 18, 2010 at 12:03 am
Tara-1044200 (8/17/2010)
If i have a database of 500gb and i would get 200gb space back by shrinking as i have done some updates and deletes.
what was the size of...
August 17, 2010 at 11:24 pm
try to use ROWNUMBER() function , it will give you more flexibilty
August 17, 2010 at 11:21 pm
sandhyarao49 (8/9/2010)
as it is transferring only the log buffer why can't we use the simple recovery mode.
BUt why do you require this ?
August 17, 2010 at 11:03 pm
GilaMonster (8/17/2010)
Bhuvnesh (8/17/2010)
IS sys.dm_db_index_usage_stats not a DMV ?
Yes it is.
If you need to do something on insert/update/delete, I recommend triggers. That DMV is just to give info on how...
August 17, 2010 at 7:02 am
Viewing 15 posts - 1,426 through 1,440 (of 2,463 total)