|
The following
procedure will solve the problem of an overgrown transaction log
file quickly:
1. Place the database into single
user mode.
2. Detach the database using
sp_detach_db procedure.
3. Rename the log file. Delete
it at a later point.
4. Attach the database using
sp_attach_db procedure.
|