Hi everyone,
I am looking for a tsql or query which will clear the transaction log file/
Thanks in advance.
Hi everyone,
I am looking for a tsql or query which will clear the transaction log file/
Thanks in advance.
' execute with admin priveleges
BACKUP LOG db_name WITH NO_LOG
GO
DBCC SHRINKDATABASE( db_name, 0)
GO