@@CPU_BUSY (Transact-SQL)
Returns the time that SQL Server has spent working since it was last started. Result is in CPU time increments, or "ticks," and is cumulative for all CPUs, so it may exceed the actual elapsed time. Multiply by @@TIMETICKS to convert to microseconds.
Note
If the time returned in @@CPU_BUSY or @@IO_BUSY exceeds approximately 49 days of cumulative CPU time, you receive an arithmetic overflow warning. In that case, the value of @@CPU_BUSY, @@IO_BUSY and @@IDLE variables are not accurate.
Syntax
@@CPU_BUSY
Return Types
integer
Remarks
To display a report containing several SQL Server statistics, including CPU activity, run sp_monitor.
Examples
The following example shows returning SQL Server CPU activity as of the current date and time. To avoid arithmetic overflow when converting the value to microseconds, the example converts one of the values to the float data type.
SELECT @@CPU_BUSY * CAST(@@TIMETICKS AS float) AS 'CPU microseconds',
GETDATE() AS 'As of' ;
Here is the result set.
CPU microseconds As of
---------------- -----------------------
18406250 2006-12-05 17:00:50.600