Viewing 13 posts - 1 through 13 (of 13 total)
Colin,
I mentioned truncating the tempDB log file as I assumed it would also be growing considerably alongside the data file.
January 29, 2009 at 4:05 pm
Sorry Jeff, I did not check me previous reply:
How do you figure that the speed of the disk has anything at all to do with disk fragmentation?
--Jeff Moden
If file...
January 29, 2009 at 3:57 pm
How do you figure that the speed of the disk has anything at all to do with disk fragmentation?
--Jeff Moden
The disks have to cope with concurrent IO requests from...
January 29, 2009 at 3:33 pm
Try setting up a job to checkpoint tempDB and then truncate the tempDB Log. Schedule it to run every 5 minutes to start with and then adjust as necessary.
January 29, 2009 at 8:29 am
Are your backups local or remote?
If local do they use the same set of disks as the databases?
Have you checked the size of the log files and the...
January 29, 2009 at 8:21 am
Fragmentation will depend on the speed of the disk subsystem, availability of contiguous disk space and the workload. Whether a file grows automatically or if forced to grow manually,...
January 28, 2009 at 9:47 am
Most of the SP2 issues are resolved by applying cumulative hotfix
http://support.microsoft.com/kb/933097
followed by the additional hotfix
http://support.microsoft.com/kb/934459
to resolve CHECKDB problems.
January 28, 2009 at 5:05 am
Setting
@freq_subday_type=2,
will set the frequency to seconds.
Then setting
@freq_subday_interval=20,
will set the interval to be 20 seconds.
January 28, 2009 at 4:55 am
I just retested on a server with running 3 SQL Server 2005 instances and it ran successfully on all 3.
Do you have the backwards compatibility pack installed and...
January 23, 2009 at 3:22 am
The following code will script out all tables in a database. It uses sql-dmo so if you are using sql server 2005, ensure that the backwards compatibility pack is...
January 22, 2009 at 4:38 am
Isn't it necessary to supply the local parameter? As in:
sp_dropserver 'old_server_name'
GO
sp_addserver 'new_server_name', local
GO
Or is that only for a non-clustered server?
January 15, 2009 at 9:14 am
To be a little clearer, if you are changing the owner through SSMS the sequence is
Right-click on the database
Select properties
Select files
You will see the owner appear in a field...
January 15, 2009 at 9:06 am
Viewing 13 posts - 1 through 13 (of 13 total)