up vote 11 down vote favorite
4
share [g+] share [fb]

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

link|improve this question

feedback

5 Answers

up vote 18 down vote accepted

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

BACKUP LOG  databasename  WITH TRUNCATE_ONLY

DBCC SHRINKFILE (  databasename_Log, 1)
link|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
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
feedback

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

link|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
feedback

backup log logname with truncate_only followed by a dbcc shrinkfile command

link|improve this answer
feedback

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.

link|improve this answer
That's very nice, but the question was asked almost 3 years ago, pay attention to the date on which the question was asked, and see if there was an accepted answer. An accepted answer is marked with a large V underneath it. Good luck and welcome to StackOverflow :) – Truth Aug 8 '11 at 16:17
@Rikudo Sennin, the age of the question doesn't always matter, as long as the answer provides value. The site is used by many to search for existing answers, not just to ask new questions. – bobs Aug 8 '11 at 23:26
True, but seeing as an answer was already accepted to this question, and no new information is provided. – Truth Aug 9 '11 at 16:29
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
feedback

For SQL 2008 you can backup log to nul device:

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

And then use DBCC SHRINKFILE to truncate the log file.

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.