Skip to content

Commit e846e54

Browse files
authored
Update sp_BlitzCache.sql
Documented the @Version parameters.
1 parent ab60144 commit e846e54

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

‎sp_BlitzCache.sql‎

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,22 @@ IF @Help = 1
468468
UNION ALL
469469
SELECT N'@MinutesBack',
470470
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.';
471+
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+
UNION ALL
479+
SELECT N'@VersionDate',
480+
N'DATETIME',
481+
N'OUTPUT parameter holding version date.'
482+
483+
UNION ALL
484+
SELECT N'@VersionCheckMode',
485+
N'BIT',
486+
N'Setting this to 1 will make the procedure stop after setting @Version and @VersionDate.';
472487

473488

474489
/* Column definitions */

0 commit comments

Comments
 (0)