|
This is a view in the mssqlsystemresource database. Describes the wait queue of tasks, which are waiting on some resource. It is a simultaneous representation of all wait-queues in the system.
CREATE VIEW sys.dm_os_waiting_tasks AS
SELECT *
FROM OpenRowSet(TABLE SYSWAITS) |
|
|