SQL Troubleshooting Wait Time
The following SQL script will export the output of ‘DBCC SQLPERF(WAITSTATS)’ into a temporary table named #waitstats.
CREATE TABLE #waitstats
(
[Wait Type] nvarchar(32) not null,
[Requests] float not null,
[Wait Time] float not null,
[Signal Wait Time] float not null
)INSERT INTO #waitstats EXEC(‘dbcc sqlperf(waitstats)’)
SELECT * FROM #waitstats
ORDER BY ‘Wait Time’ DESC
To delete the temporary table use the command:
DROP TABLE #waitstats