I need to empty an LDF file before sending to a colleague. How do I force SQL Server to truncate the log?
|
1
|
|
|
|
|
|
if I remember well... in query analyzer or equivalent:
|
||
|
|
|
|
In management studio:
Alternatively, the SQL to do it:
|
||
|
|
|
|
backup log logname with truncate_only followed by a dbcc shrinkfile command |
||
|
|
|
|
+1 to ila's answer. (I've run out of votes today) |
||
|
|
