Viewing 11 posts - 1 through 11 (of 11 total)
I had this same issue with one of my db. Apparently I had left Truncate log script for this particular db which fired before my Transaction Log backup script. Forgot...
August 15, 2008 at 7:36 am
Check out this article:
http://www.sql-server-performance.com/tp_analyzing_sql_server_2000_data_caching.asp
February 27, 2007 at 4:31 pm
I'm running this proc in SQL 2000 env and it works.
April 13, 2006 at 10:40 am
Not sure if I understand ur ?
The above mentioned proc will calculate how much the log file can be shrunk and then shrink it to that value.
This proc is run...
December 11, 2005 at 10:44 am
Run sp_configure proc and check out for Max Degree of Parallelism. For further info on this , Books Online is a good resource.
December 8, 2005 at 1:40 pm
Run sp_configure proc and check out for Max Degree of Parallelism. For further info on this , Books Online is a good resource.
December 8, 2005 at 1:40 pm
The following Stored Proc will Shrink the Log file to it's minimum value possible for the Database passed in as a Parameter to it.
exec dbo.Run_DBCCWithParam 'Target Database'
I have scheduled...
December 8, 2005 at 1:14 pm
Phill/Peter Appreciate your response.
%1 worked!!!
Thanks.
April 20, 2005 at 9:04 am
Appreciate the response guys.
I will try this out and keep you posted with any update(s).
April 14, 2005 at 1:31 pm
I ran into this issue too. Found this that helped me a whole lot:
http://www.sqldev.net/xp/xpsmtp.htm
April 13, 2005 at 12:45 pm
Viewing 11 posts - 1 through 11 (of 11 total)