vote up 2 vote down star
1

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

flag

4 Answers

vote up 7 vote down check

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

BACKUP LOG  databasename  WITH TRUNCATE_ONLY

DBCC SHRINKFILE (  databasename_Log, 1)
link|flag
vote up 4 vote down

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|flag
vote up 2 vote down

backup log logname with truncate_only followed by a dbcc shrinkfile command

link|flag
vote up -1 vote down

+1 to ila's answer.

(I've run out of votes today)

link|flag

Your Answer

Get an OpenID
or

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