Reputation: 81721
I am looking for a tsql or query which will clear the transaction log file/
Thanks in advance.
Upvotes: 1
Views: 647
Reputation: 1603
' execute with admin priveleges
BACKUP LOG db_name WITH NO_LOG
GO
DBCC SHRINKDATABASE( db_name, 0)
GO
Upvotes: 0