Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm not a SQL expert, and I'm reminded of the fact every time I need to do something beyond the basics. I have a test database that is not large in size, but the transaction log definitely is. How do I clear out the transaction log?

share|improve this question

23 Answers

up vote 122 down vote accepted

Right click on the database name.

Select Tasks -> Shrink -> Database

Then click OK! I usually open the Windows Explorer directory containing the database files so I can immediately see the effect.

I was actually quite surprised this worked! Normally I've used DBCC before, but I just tried that and it didn't shrink anything so I tried the GUI (2005) and it worked great - freeing up 17Gb in 10 seconds

Edit: In Full recovery mode this might not work, so you have to either back up the log first, or change to Simple recovery, then shrink the file. [thanks @onupdatecascade for this]

share|improve this answer
1  
glad to hear it worked for you too! if anyone has any comments to add for situations when this is NOT an adequate or optimal solution then please comment below. – Simon_Weaver Apr 15 '09 at 23:46
23  
In Full recovery mode this might not work, so you have to either back up the log first, or change to Simple recovery, then shrink the file. – onupdatecascade Aug 6 '09 at 6:12
4  
@onupdatecascade - good call on full recovery trick. had another database with a huge log : switched to simple, then shrink database and switched back to full. log file down to 500kb! – Simon_Weaver Sep 17 '09 at 6:28
1  
simple shrink command from SQL GUI does not seems to work for me at all. I have tried it several times without any reduction in the size of transaction log. Am i missing something ?? – Vikram May 12 '10 at 7:38
2  
did you turn off 'full recovery' mode and changed it to 'simple' mode? disclaimer: MAKE A BACKUP first if you do this. i've never had an issue but would hate for you to lose data – Simon_Weaver May 12 '10 at 21:40
show 1 more comment

If you do not use the transaction logs for restores (i.e. You only ever do full backups), you can set Recovery Mode to "Simple", and the transaction log will very shortly shrink and never fill up again.

If you are using SQL 7 or 2000, you can enable "truncate log on checkpoint" in the database options tab. This has the same effect.

This is not recomended in production environments obviously, since you will not be able to restore to a point in time.

share|improve this answer
USE AdventureWorks2008R2;
GO
-- Truncate the log by changing the database recovery model to SIMPLE.
ALTER DATABASE AdventureWorks2008R2
SET RECOVERY SIMPLE;
GO
-- Shrink the truncated log file to 1 MB.
DBCC SHRINKFILE (AdventureWorks2008R2_Log, 1);
GO
-- Reset the database recovery model.
ALTER DATABASE AdventureWorks2008R2
SET RECOVERY FULL;
GO

from : http://msdn.microsoft.com/en-us/library/ms189493.aspx

you may want to backup first

share|improve this answer

Here is a simple and very inelegant & potentially dangerous way.

  1. Backup DB
  2. Detach DB
  3. Rename Log file
  4. Attach DB
  5. New log file will be recreated
  6. Delete Renamed Log file.

I'm guessing that you are not doing log backups. (Which truncate the log). My advice is to change recovery model from full to simple. This will prevent log bloat.

share|improve this answer
9  
Respectfully, deleting/ renaming/ recreating/ replacing the log is a very bad idea. Shrink is must less risky, plus it's pretty simple to do. – onupdatecascade Aug 6 '09 at 6:11
3  
+1 - Inelegant or not, this method has got me out of hot water a couple of times with database logs that have filled the entire disk, such that even a shrink command can't run. – Shaul Feb 26 '12 at 9:13

[answer ads more details than requested but I hope it’s useful]

Below is a script to shrink transaction log but I’d definitely recommend backing up transaction log before shrinking it.

If you just shrink file you are going to lose a ton of data that may come as a live saver in case of disaster. Transaction log contains a lot of useful data that can be read using 3rd party transaction log reader (it can be read manually but with extreme effort though). Transaction log is also a must when it comes to point in time recovery so don’t just throw it away but make sure you back it up beforehand.

Here are several posts where people used data stored in transaction log to accomplish recovery

How to view transaction logs in sql server 2008

Read the log file (*.LDF) in sql server 2008

USE DATABASE_NAME;
GO

ALTER DATABASE DATABASE_NAME
SET RECOVERY SIMPLE;
GO
--first parameter is log file name and second is size in MB
DBCC SHRINKFILE (DATABASE_NAME_Log, 1);

ALTER DATABASE DATABASE_NAME
SET RECOVERY FULL;
GO

You may get error that looks like this when executing commands above

“Cannot shrink log file (log file name) because the logical
log file located at the end of the file is in use “

This means that TLOG is in use. In this case try executing this several times in a row or find a way to reduce database activities.

share|improve this answer

Or you could also use a Maintenance Task that does this for you periodically. Create a new maintenance task and the wizard will -at some point- ask you to shrink the Transaction Log. You have a few options to set there.

Schedule that to be executed every morning and your test db will stay clean most of the time.

Edit: in order to schedule a Maintenance Task, you'll need the SQL Agent service to be running.

share|improve this answer

To Truncate the log file:

  • Backup the database
  • Detach the database, either by using Enterprise Manager or by executing : *Sp_DetachDB [DBName]*
  • Delete the transaction log file. (or rename the file, just in case)
  • Re-attach the database again using: *Sp_AttachDB [DBName]*
  • When the database is attached, a new transaction log file is created.

To Shrink the log file:

  • Backup log [DBName] with No_Log
  • Shrink the database by either:

    Using Enterprise manager :- Right click on the database, All tasks, Shrink database, Files, Select log file, OK.

    Using T-SQL :- *Dbcc Shrinkfile ([Log_Logical_Name])*

You can find the logical name of the log file by running sp_helpdb or by looking in the properties of the database in Enterprise Manager.

share|improve this answer

First check the database Recovery model. By default SQL Server Epxress edition create database in Simple recovery model (if iam not mistaken).

Backup Log DatabaseName With Truncate_Only

DBCC ShrinkFile(yourLogical_LogFileName, 50)

SP_helpfile will give you the logical log file name

Refer :

http://support.microsoft.com/kb/873235.

If your database is in Full Recovery Model and if you are not taking TL backup , then change it to SIMPLE.

share|improve this answer
This is the way that I clear log files on my dev boxes. Prod environments with all of the associated backup strategies etc I leave to the DBA's :-) – Joon Aug 13 '09 at 8:30

To my experience on most SQL Servers there is no backup of the transaction log. Full backups or differential backups are common practice, but transaction log backups are really seldom. So the transaction log file grows forever (until the disk is full). In this case the recovery model should be set to "simple". Don't forget to modify the system databases "model" and "tempdb", too.

A backup of the database "tempdb" makes no sense, so the recovery model of this db should always be "simple".

share|improve this answer

This technique that John recommends is not recommended as there is no guarantee that the database will attach without the log file. Change the database from full to simple, force a checkpoint and wait a few minutes. The SQL Server will clear the log, which you can then shrink using DBCC SHRINKFILE.

share|improve this answer
+1 I suspected it was hacky. – John Nolan Feb 6 '09 at 22:32
...but I have done it dozens of times without issue. perhaps you could explain why the db may not re-attach. – John Nolan Feb 6 '09 at 22:35
I have on occasion (not very often) seen the SQL Server not be able to attach the database back to the database when the log file has been deleted. This leaves you with a useless MDF file. There are several possibilities that can cause the problem. Transactions pending rollback come to mind. – mrdenny Feb 8 '09 at 21:39

Use the DBCC ShrinkFile ({logicalLogName}, TRUNCATEONLY) command. If this is a Test database and you are trying to save/reclaim space this will help. Remember though that TX logs do have a sort of minimum/steady state size that they will grow up to. Depending upon your recovery model you may not be able to shrink the log - If in FULL and you aren't issuing TX log backups the log can't be shrunk - it will grow forever. If you don't need tx log backups switch your recovery model to Simple.

And remember, never ever under any circumstances Delete the log (LDF) file!!! You will pretty much have instant database corruption. Cooked! Done! Lost Data! If left "unrepaired" the main MDF could become corrupt permanently.

Never ever delete the transaction log - you will lose data! Part of your data is in the TX Log (regardless of recovery model)... if you detach and "rename" the TX log file that effectively Deletes part of your database.

For those that have deleted the TX Log you may want to run a few checkdb commands and fix the corruption before you lose more data.

Check out Paul Randal's blog on this very topic. http://sqlskills.com/BLOGS/PAUL/category/Bad-Advice.aspx#p4

Also in general do not use shrinkfile on the MDF's as it can severely fragment your data. Check out his Bad Advice section for more info ("Why you should not shrink your data files")

Check out Paul's website - he covers these very questions. Last month he walked through many of these issues in his Myth A Day series.

share|improve this answer
+1 For being the first answer to mention that this may not be a good idea! The OP specifies a test database but it is a point well worth making for the more general case. – Martin Smith Jan 3 '11 at 14:04

If I need to shrink the files quickly, I

1.first change the recovery model to simple 2.Then the transaction log files goes away 3.Change back the recovery model.

Its a little bit ugly perhaps, but it works for me

share|improve this answer

Example:-

DBCC SQLPERF(LOGSPACE)

BACKUP LOG Comapny WITH TRUNCATE_ONLY

DBCC SHRINKFILE (Company_log, 500)

DBCC SQLPERF(LOGSPACE)

share|improve this answer

try this

USE DatabaseName

GO

DBCC SHRINKFILE( TransactionLogName, 1)

BACKUP LOG DatabaseName WITH TRUNCATE_ONLY

DBCC SHRINKFILE( TransactionLogName, 1)

GO

Regards,

Muhammad Imran

share|improve this answer
  1. take back up of MDB file.
  2. Stop sql services
  3. Rename Log File
  4. start service

(system will create a new log file.)

delete or move renamed log file.

share|improve this answer

To clear a 14GB transaction log file (Backups of transaction log were 11GB and taking ages), With DB Recovery set to FULL as we are cautious with recovery. Why have tranaction logging if you don't recover them in a DR situation?

Using SQL Maint plans & Job Activity Monitor TSQL for DBCCshrinkfile .

In Maint plan

Step 1 - Back up database (Full)

Step 2 - Back up Transaction Log (Truncate set)

Run DB Maint Plan

Then run TSQL Job for the database using cmd: DBCC SHRINKFILE (dbaselogname, 50)

This reduced by half the transaction log size,

Repeated above - reduced transaction log down to 50MB - which is ideal for database size

I have now scheduled to do this early hours every morning to keep the log size down and performance up.

share|improve this answer

To Truncate the log file:

Backup the database Detach the database, either by using Enterprise Manager or by executing : *Sp_DetachDB [DBName]* Delete the transaction log file. (or rename the file, just in case) Re-attach the database again using: *Sp_AttachDB [DBName]* When the database is attached, a new transaction log file is created.

this worked for me to delete 12gb of junk thnx for the post

share|improve this answer

Exercise caution doing the detach and rename LDF file trick.

It didn't work exactly as written (I couldn't reattach the DB without it), and the database I detached was my default database, so I couldn't log on to the SQL Server anymore. I had to actually go to a buddy's workstation who also had SA rights to sort it out.

After reattaching though, I was able to change "Recovery Type" to "Simple" and shrink the log files.

share|improve this answer

DB Transaction Log Shrink to min size:

  1. Backup: Transaction log
  2. Shrink files: Transaction log
  3. Backup: Transaction log
  4. Shrink files: Transaction log

I made tests on several number of DBs: this sequence works.

It usually shrinks to 2MB.

OR by a script:

DECLARE @DB_Name nvarchar(255);
DECLARE @DB_LogFileName nvarchar(255);
SET @DB_Name = '<Database Name>';               --Input Variable
SET @DB_LogFileName = '<LogFileEntryName>';         --Input Variable
EXEC 
(
'USE ['+@DB_Name+']; '+
'BACKUP LOG ['+@DB_Name+'] WITH TRUNCATE_ONLY ' +
'DBCC SHRINKFILE( '''+@DB_LogFileName+''', 2) ' +
'BACKUP LOG ['+@DB_Name+'] WITH TRUNCATE_ONLY ' +
'DBCC SHRINKFILE( '''+@DB_LogFileName+''', 2)'
)
GO
share|improve this answer
  DUMP TRANSACTION    databasename    WITH   NO_LOG
  GO
  BACKUP LOG databasename WITH NO_LOG
  GO
  DBCC SHRINKDATABASE(databasename)
  GO
share|improve this answer
  1. Backup DB
  2. Detach DB
  3. Rename Log file
  4. Attach DB (while attaching remove renamed .ldf (log file).Select it and remove by pressing Remove button)
  5. New log file will be recreated
  6. Delete Renamed Log file.

This will work but it is suggested to take backup of your database first.

share|improve this answer

Most answers here so far are assuming you do not actually need the Transaction Log file, however if your database is using the FULL recovery model, and you want to keep your backups in case you need to restore the database, then do not truncate or delete the log file the way many of these answers suggest.

Eliminating the log file (through truncating it, discarding it, erasing it, etc) will break your backup chain, and will prevent you from restoring to any point in time since your last full, differential, or transaction log backup, until the next full or differential backup is made.

From the Microsoft article onBACKUP

We recommend that you never use NO_LOG or TRUNCATE_ONLY to manually truncate the transaction log, because this breaks the log chain. Until the next full or differential database backup, the database is not protected from media failure. Use manual log truncation in only very special circumstances, and create backups of the data immediately.

To avoid that, backup your log file to disk before shrinking it. The syntax would look something like this:

BACKUP LOG MyDatabaseName 
TO DISK='C:\DatabaseBackups\MyDatabaseName_backup_2013_01_31_095212_8797154.trn'

DBCC SHRINKFILE (N'MyDatabaseName_Log', 1)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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