How to check active transactions in SQL Server 2014?
Query with sys.sysprocesses SELECT * FROM sys.sysprocesses WHERE open_tran = 1 DBCC OPENTRAN : helps to identify active transactions that may be preventing log truncation. DBCC OPENTRAN displays information about the oldest active transaction and the oldest distributed and nondistributed replicated transactions, if any, within the transaction log of the specified database. Results are displayed … Read more