Viewing 15 posts - 181 through 195 (of 395 total)
You are using some scripts like:
RESTORE DATABASE YourDB
FROM DISK = N'F:\MSSQL\BACKUPS\YourDB.BAK'
WITH REPLACE,
MOVE N'YourDB_Data' TO N'H:\data\YourDB_Data.MDF',
MOVE N'YourDB_Log' TO N'G:\Log\YourDB_Log.LDF'
August 7, 2006 at 2:11 pm
to get a list of all triggers:
select p.name,
t.name,
syscomments.text
FROM sysobjects t
INNER JOIN sysobjects p on p.id= t.parent_obj
INNER JOIN syscomments on...
August 7, 2006 at 1:49 pm
I would agree with Philip with one exception: try to create a server side trace with limited impact on the server, since most likely
it will be running...
August 7, 2006 at 1:42 pm
run "limited" server side traces... they have minimal impact on the system
August 4, 2006 at 3:42 pm
Did you update statistics with full scan or run dbcc dbreindex?...
August 2, 2006 at 2:44 pm
you may want to design your own DBA database where you would store all info about other servers/databases/failed jobs/space... We are using a linked servers approach to collect all that...
July 28, 2006 at 7:00 pm
maybe you want to split it into two files ( or more files) of the equal size to reduce the allocation resource contention for tempdb that is experiencing heavy usage....And might...
July 26, 2006 at 3:34 pm
Dbcc shrink file works faster since it works on file by file basis and the changes are permanently stored as it completed the single file operation. This is not a...
July 26, 2006 at 3:26 pm
try to run profiler for the most commonly missed tables....
July 25, 2006 at 3:12 pm
check if it helps: http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=271442
July 20, 2006 at 1:43 pm
check/compare Estimated Execution Plan on both Prod and Local box...
July 20, 2006 at 11:26 am
we collect data about failed jobs and displayed them in html report ( updated daily). It will take just couple of minutes to look into that then.
July 17, 2006 at 2:01 pm
may be this can help you a bit:
http://www.microsoft.com/technet/prodtechnol/sql/2005/sqlupgrd.mspx
July 14, 2006 at 9:32 pm
Viewing 15 posts - 181 through 195 (of 395 total)