ReportServer2005TempDB_log
How do I shink this file, it's 500gig and the dump file is only 5gig?
Fred
May 11th, 2011 9:47am
Restart the SQL Server service and read this asrticle
http://technet.microsoft.com/en-us/library/cc966545.aspxBest Regards, Uri Dimant SQL Server MVP http://dimantdatabasesolutions.blogspot.com/ http://sqlblog.com/blogs/uri_dimant/
Free Windows Admin Tool Kit Click here and download it now
May 11th, 2011 9:54am
your talking sql tempdb, I'm talking reportservertempdb
May 11th, 2011 11:42am
What do you mean by dump file?
In any case you can use select log_reuse_wait_desc,name from sys.databases
to check if the log is not reusing the space for any particular reason and DBCC SQLPERF (LOGSPACE) to check
what is the % of space used by the log from the total log size.
If the result is nothing for the log_reuse_wait_desc you can use DBCC Shrnkfile
http://msdn.microsoft.com/en-us/library/ms189493.aspx to reduce the size of the file.
Free Windows Admin Tool Kit Click here and download it now
May 11th, 2011 12:22pm