SQL @@CPU_BUSY

SQL @@CPU_BUSY functions returns the total amount of time spent in the current operation since SQL Server last started. The syntax of @@CPU_BUSY is @@CPU_BUSY SQL @@CPU_BUSY Example The below code snippet will show you the total time spent in active operation since this SQL Server last started. SELECT @@CPU_BUSY AS ‘CPU Busy Time’ You can use @@TIMETICKS to get … Read more