How to truncate and shrink large log files in SQL Server 2005? How to apply truncation at regular intervals?

Is there any difference between truncation and shrinking?

Thanks in advance

link|improve this question

72% accept rate
feedback

3 Answers

up vote 6 down vote accepted

Use DBCC SHRINKFILE and schedule it as a job that runs regularly (preferably during off-hours).

Just be aware that there is a performance hit from regularly growing and shrinking the log file. If you have the space, you may want to set the file size to the maximum that it normally grows to and just leave it.

link|improve this answer
feedback

Use the DBCC SHRINKFILE statement.

link|improve this answer
feedback

Reliable shrinking is achieved by

  • Backup (can be truncate only)
  • Checkpoint
  • Shrink
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.