T-SQL Tutorial

T-SQL Sp_monitor


On Transact SQL language the sp_monitor is part of Database Engine Stored Procedures and shows statistics about Microsoft SQL Server.

Sp_monitor syntax:

sp_monitor ;





Sp_monitor example:

USE model;
GO
EXEC sp_monitor;
GO