I need to empty an LDF file before sending to a colleague. How do I force SQL Server to truncate the log?
|
feedback
|
|
if I remember well... in query analyzer or equivalent:
| |||||
feedback
|
|
In management studio:
Alternatively, the SQL to do it:
| |||
feedback
|
|
backup log logname with truncate_only followed by a dbcc shrinkfile command | |||
|
feedback
|
|
For SQL Server 2008, the command is:
This reduced my 14GB log file down to 1MB. | |||||||||
feedback
|
|
For SQL 2008 you can backup log to
And then use | |||
|
feedback
|