vote up 19 vote down star
11

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?

flag

76% accept rate

14 Answers

vote up 5 vote down check

Right click on the database name.

Select Tasks -> Shrink -> Database

Then click OK!

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

link|flag
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 Apr 15 at 23:46
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 at 6:12
@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 Sep 17 at 6:28
vote up 3 vote down

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.

link|flag
vote up 8 vote down

Here is a simple and very inelegant 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.

link|flag
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 at 6:11
vote up 2 vote down

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.

link|flag
vote up 4 vote down

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.

link|flag
vote up 2 vote down

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".

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
+1 I suspected it was hacky. – John Nolan Feb 6 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 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 at 21:39
vote up 0 vote down

Hi,

I wanted to know that Is the Backup for the transactional log is automatic if my recovery model is Full ? Can I change my transactional log backup frequency through the management studio or bt T-SQL ?

-Aditya

link|flag
vote up 1 vote down

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.

link|flag
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 at 8:30
vote up 0 vote down

Depending on your circumstancces, each one of these might or might not be what you actually need to do.

Just go down the list. If one doesn't work, try the next.

link|flag
vote up 0 vote down

Worked for me thanks.

link|flag

Your Answer

Get an OpenID
or

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