Viewing 15 posts - 1,291 through 1,305 (of 1,364 total)
Go through the following link
http://www.databasejournal.com/features/mssql/article.php/3556461
Although this link is not for gzip but you can get an idea of how to use this compression utilities with sql server.
Hope...
June 10, 2008 at 10:25 am
Kathy,
Please check sql server memory and processor utilization(for sqlservr.exe as well as for os level processes) counters under perfmon.
Manu
June 10, 2008 at 10:09 am
Paul,
Just execute sp_removedbreplication 'newdatabasename' on this newly restored database.
Let me know if this helps.
Manu
June 10, 2008 at 10:05 am
Thanks for the prompt reply Adam. I just wanted to confirm about how are you going to deal with sql logins, nothing else. I do agree that sp_help_revlogin script is...
June 10, 2008 at 9:15 am
Try running DBCC opentran just after running DBCC SHRINKFILE with emptyfile statement and check whether file is getting used during that time or not.
Also, try deleting the log file using...
June 10, 2008 at 9:09 am
Is your database getting used a lot during database backup operation? Check what are the other operations running on the same database during database backup time.
Also, is this disk array...
June 10, 2008 at 8:54 am
Hi Chris,
Is sql agent service started?
Regarding logging solution you can make use of logging options available under sql agent job and as well as dts package logs(can be saved...
June 10, 2008 at 8:42 am
Thanks for the detailed and useful reply Adam. I have one question here:
How are you going to deal with sql logins(in case they are there on live server but not...
June 10, 2008 at 8:31 am
http://www.red-gate.com/help/sqlbackup/Topics/SBU_CommandRESTORE.html
http://www.red-gate.com/help/sqlbackup/Topics/SBU_CommandBACKUP.html
For LiteSpeed restores, you can execute something along the
lines of:
EXEC master.dbo.xp_restore_database @database='YourDBName',
@filename = 'C:\PathTo\YourDBName_Backup.BAK',
@WIth = 'Replace'
There is also a GUI for LiteSpeed - try logging onto...
June 9, 2008 at 4:31 pm
Just check whether any file related operations like Autogrow, autoshrink or any other backup statements are in execution in the background on this database.
Manu
June 9, 2008 at 2:31 pm
Regarding memusage column I found this:
Pls note that BOL states that MEMUSAGE is only for backward compatibility and should not be relied upon.
The suggestion is to use perfmon...
June 9, 2008 at 2:27 pm
Start the msdtc service if you want to use it on standalone instance. Normally its not required on unclustered instances but I read somewhere that its needed in transactional replication...
June 9, 2008 at 1:18 pm
Lee,
Go through these and then come up with any conclusion:
http://support.microsoft.com/kb/325024
http://searchsqlserver.techtarget.com/tip/0,289483,sid87_gci1278729,00.html#
Hope this helps!
Manu
June 9, 2008 at 12:11 pm
Try making use of sp_msforeachdb undocumented stored procedure.
Manu
June 9, 2008 at 12:02 pm
Viewing 15 posts - 1,291 through 1,305 (of 1,364 total)