• Does this help?

    SELECT *

    FROM sys.dm_tran_active_transactions tat

    INNER JOIN sys.dm_exec_requests er ON tat.transaction_id = er.transaction_id

    CROSS APPLY sys.dm_exec_sql_text(er.sql_handle)

    Just note that it is possible for connections to have open transactions but not to be running any commands.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass