Skip to content

Instantly share code, notes, and snippets.

View PandaEox's full-sized avatar

Panda PandaEox

View GitHub Profile
@PandaEox
PandaEox / rollback_monitor.sql
Created April 30, 2014 05:20
Monitor the status of a running rollback
select
er.session_id,
er.command,
er.status,
er.percent_complete
from sys.dm_exec_requests as er
where command like '%rollback%'