Esegui la seguente sequenza di istruzioni:
BACKUP LOG <db_name> WITH TRUNCATE_ONLY
--or save to log to other drives on disk if required
GO
CHECKPOINT
GO
--replace 2 with your actual log file number.
DBCC SHRINKFILE (2, 100)
Se il registro non si riduce, verificare il motivo della crescita del file di registro. Maggiori informazioni al riguardo possono essere trovate qui:
http://sqlreality. com/blog/ms-sql-server-2008/troubleshooting-the-full-transaction-log-problem/