Shrink log files
-
05 Mart 2012 Pazartesi 16:18IS it safe to shrink log files when the logshipping is enabled?
Tüm Yanıtlar
-
05 Mart 2012 Pazartesi 20:38
Yes it is and instructions to perform a shrink can be found here http://msdn.microsoft.com/en-us/library/ms189493.aspx or http://msdn.microsoft.com/en-us/library/ms190757.aspx
It is not safe though to change the recovery model of a log shipped database to simple mode as that will break log shipping.
- Yanıt Olarak Öneren WFKinsley 06 Mart 2012 Salı 17:52
-
06 Mart 2012 Salı 06:38YanıtlayıcıYep, also see this great link http://www.sqlskills.com/blogs/kimberly/post/8-Steps-to-better-Transaction-Log-throughput.aspx
Best Regards, Uri Dimant SQL Server MVP http://dimantdatabasesolutions.blogspot.com/ http://sqlblog.com/blogs/uri_dimant/
-
06 Mart 2012 Salı 07:33
On Mon, 5 Mar 2012 16:18:09 +0000, Amydom wrote:
IS it safe to shrink log files when the logshipping is enabled?
Safe: Yes.
Smart: No. Unless the log file has seriously ballooned due to a
one-time issue and will never grow that big again, AND you really need
the disk space back. See
http://www.karaszi.com/SQLServer/info_dont_shrink.asp for more info,
Hugo Kornelis, SQL Server MVP
My SQL Server blog: http://sqlblog.com/blogs/hugo_kornelis- Yanıt Olarak İşaretleyen Iric WenEditor 15 Mart 2012 Perşembe 02:10
-
06 Mart 2012 Salı 15:49Thanks all for the replies. My concern is, I see more than 600 VLFs.
-
07 Mart 2012 Çarşamba 07:45
>Thanks all for the replies. My concern is, I see more than 600 VLFs.
That is a lot indeed. And actually, shrinking the log file is the most
probable cause of this issue. (Or else, the log was allocated to
small, and autogrow was set to a small increment).The best way to correct this does indeed involve shrinking the log
file, as a one-time operation. It should be done during an inactive
part of the day, and immediately after a log backup. And right after
that, you have to manually grow back the transaction log to the
desired size.After that, make sure to monitor usage of the transaction log and grow
it manually (by a large amount at once) at appropriate times. Autogrow
is a great way to prevent being pages at night, but it should not be
used as the standard groth mechanism; it's a failsafe mechanism only!
Hugo Kornelis, SQL Server MVP
My SQL Server blog: http://sqlblog.com/blogs/hugo_kornelis- Yanıt Olarak İşaretleyen Iric WenEditor 15 Mart 2012 Perşembe 02:10