--SQL Server Database log full due to replication, you can run the following command to mark all ---the replication transaction is done, it will let you shrink the log file.
exec sp_repldone @xactid = NULL, @xact_seqno = NULL, @numtrans = 0, @time = 0, @reset = 1;
Comments