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

I need to empty an LDF file before sending to a colleague. How do I force SQL Server to truncate the log?

share|improve this question

5 Answers

up vote 28 down vote accepted

if I remember well... in query analyzer or equivalent:

BACKUP LOG  databasename  WITH TRUNCATE_ONLY

DBCC SHRINKFILE (  databasename_Log, 1)
share|improve this answer
   
This is definitely better than setting the database recovery model to SIMPLE (as in Blorgbeard's answer) because if your recovery model is FULL, you have it set that way for a reason. – Scott Whitlock Oct 19 '10 at 17:13
14  
truncate_only is deprecated in SQL Server 2008 so you have to switch the db to simple recovery msdn.microsoft.com/en-us/library/ms143729(SQL.90).aspx – Justin Moore Dec 15 '10 at 22:14
For SQL Server 2012 this works, but without WITH TRUNCATE_ONLY. – net_prog Apr 26 at 8:32

In management studio:

  • Right-click the database, choose properties, then options.
  • Make sure "Recovery model" is set to "Simple", not "Full"
  • Click Ok
  • Right-click the database again, choose tasks -> shrink files
  • Change file type to "log"
  • Click ok.

Alternatively, the SQL to do it:

 ALTER DATABASE mydatabase SET RECOVERY SIMPLE
 DBCC SHRINKFILE (mydatabase_Log, 1)

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

share|improve this answer
Your answer has just saved my day! I didn't know of the "right-click - Tasks -> Shrink" option. Thank you! – Gunder Apr 20 '11 at 13:51

For SQL Server 2008, the command is:

ALTER DATABASE ExampleDB SET RECOVERY SIMPLE
DBCC SHRINKFILE('ExampleDB_log', 0, TRUNCATEONLY)

This reduced my 14GB log file down to 1MB.

share|improve this answer
2  
As the question is ambiguous as to which version and the accepted answer isn't applicable to SQL Server 2008 this answer is still valid regardless of age. – James Law Nov 19 '11 at 14:46

For SQL 2008 you can backup log to nul device:

BACKUP LOG [databaseName]
TO DISK = 'nul:' WITH STATS = 10

And then use DBCC SHRINKFILE to truncate the log file.

share|improve this answer

backup log logname with truncate_only followed by a dbcc shrinkfile command

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.