@@ -1579,7 +1579,7 @@ BEGIN
1579
1579
as well get it now - whereas if we're checking 30+ seconds, it might get updated by the
1580
1580
end of our sp_BlitzFirst session. */
1581
1581
INSERT INTO #BlitzFirstResults (CheckID, Priority, FindingsGroup, Finding, Details, DetailsInt, URL )
1582
- SELECT 24 , 50 , ' Server Performance' , ' High CPU Utilization' , CAST (100 - SystemIdle AS NVARCHAR (20 )) + N ' %. Ring buffer details: ' + CAST (record AS NVARCHAR ( 4000 )) , 100 - SystemIdle, ' http://www.BrentOzar.com/go/cpu'
1582
+ SELECT 24 , 50 , ' Server Performance' , ' High CPU Utilization' , CAST (100 - SystemIdle AS NVARCHAR (20 )) + N ' %.' , 100 - SystemIdle, ' http://www.BrentOzar.com/go/cpu'
1583
1583
FROM (
1584
1584
SELECT record,
1585
1585
record .value (' (./Record/SchedulerMonitorEvent/SystemHealth/SystemIdle)[1]' , ' int' ) AS SystemIdle
@@ -3350,15 +3350,13 @@ EXEC dbo.sp_BlitzFirst
3350
3350
With extra diagnostic info:
3351
3351
EXEC dbo.sp_BlitzFirst @ExpertMode = 1;
3352
3352
3353
- In Ask a Question mode:
3354
- EXEC dbo.sp_BlitzFirst 'Is this cursor bad?';
3355
-
3356
3353
Saving output to tables:
3357
- EXEC sp_BlitzFirst @Seconds = 60
3354
+ EXEC sp_BlitzFirst
3358
3355
, @OutputDatabaseName = 'DBAtools'
3359
3356
, @OutputSchemaName = 'dbo'
3360
- , @OutputTableName = 'BlitzFirstResults'
3361
- , @OutputTableNameFileStats = 'BlitzFirstResults_FileStats'
3362
- , @OutputTableNamePerfmonStats = 'BlitzFirstResults_PerfmonStats'
3363
- , @OutputTableNameWaitStats = 'BlitzFirstResults_WaitStats'
3357
+ , @OutputTableName = 'BlitzFirst'
3358
+ , @OutputTableNameFileStats = 'BlitzFirst_FileStats'
3359
+ , @OutputTableNamePerfmonStats = 'BlitzFirst_PerfmonStats'
3360
+ , @OutputTableNameWaitStats = 'BlitzFirst_WaitStats'
3361
+ , @OutputTableNameBlitzCache = 'BlitzCache'
3364
3362
*/
0 commit comments