I have several databases where the transaction log (.LDF) is many times larger than the database file (.MDF).
What can I do to automatically shrink these or keep them from getting so large?
|
|
I have several databases where the transaction log (.LDF) is many times larger than the database file (.MDF). What can I do to automatically shrink these or keep them from getting so large? |
|||
|
|
|
|
That should do the job
A word of warning You would only really use it on a test/development database where you do not need a proper backup strategy as dumping the log will result in losing transactions history. In live systems you should use solution sugested by Cade Roux |
|||
|
|
|
no one here said it so i will: NEVER EVER shrink the transaction log. It is a bad idea from the sql server point of view. keep it small by doing daily db backups and hourly (or less) transaction log backups. the transaction log backup interval depends on how busy your db is. |
||
|
|
|
|
Here is what I have been Using
|
||
|
|
|
|
Using Query Analyser:
You should find something similar to:
Check the file ID of the log file (its 2 most of the time). Execute 2 or 3 times the checkpoint command to write every page to the hard-drive.
Execute the following transactional command to trunk the log file to 1 MB
|
||
|
|
|
|
Another thing you can try is to set the recovery mode to simple (if they are not already) for the database, which will keep the log files from growing as rapidly. We had this problem recently where our transaction log filled up and we were not permitted anymore transactions. A combination of the shrink file which is in multiple answers and simple recovery mode made sure our log file stayed a reasonable size. |
||
|
|
|
|
try sp_force_shrink_log which you can find here http://www.rectanglered.com/sqlserver.php |
||
|
|
|
|
Backup transaction log and shrink it. If the DB is being backed up regularly and truncated on checkpoint, it shouldn't grow out of control, however, if you are doing a large number (size) of transactions between those intervals, it will grow until the next checkpoint. |
||
|
|
|
|
Right click on the database in Enterprise Manager > All Tasks > Shrink Database. |
||
|
|
|
|
DBCC SHRINKFILE. |
||
|
|