1 parent ab60144 commit e846e54Copy full SHA for e846e54
1 file changed
sp_BlitzCache.sql
@@ -468,7 +468,22 @@ IF @Help = 1
468
UNION ALL
469
SELECT N'@MinutesBack',
470
N'INT',
471
- N'How many minutes back to begin plan cache analysis. If you put in a positive number, we''ll flip it to negative.';
+ N'How many minutes back to begin plan cache analysis. If you put in a positive number, we''ll flip it to negative.'
472
+
473
+ UNION ALL
474
+ SELECT N'@Version',
475
+ N'VARCHAR(30)',
476
+ N'OUTPUT parameter holding version number'
477
478
479
+ SELECT N'@VersionDate',
480
+ N'DATETIME',
481
+ N'OUTPUT parameter holding version date.'
482
483
484
+ SELECT N'@VersionCheckMode',
485
+ N'BIT',
486
+ N'Setting this to 1 will make the procedure stop after setting @Version and @VersionDate.';
487
488
489
/* Column definitions */
0 commit comments