Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sp_HealthParser/sp_HealthParser.sql
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ BEGIN
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT
@version = '3.5',
@version_date = '20260420';
@version = '3.6',
@version_date = '20260501';

IF @help = 1
BEGIN
Expand Down
4 changes: 2 additions & 2 deletions sp_HumanEvents/sp_HumanEvents.sql
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ SET XACT_ABORT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT
@version = '7.5',
@version_date = '20260420';
@version = '7.6',
@version_date = '20260501';

IF @help = 1
BEGIN
Expand Down
4 changes: 2 additions & 2 deletions sp_HumanEvents/sp_HumanEventsBlockViewer.sql
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ SET XACT_ABORT OFF;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT
@version = '5.5',
@version_date = '20260420';
@version = '5.6',
@version_date = '20260501';

IF @help = 1
BEGIN
Expand Down
4 changes: 2 additions & 2 deletions sp_IndexCleanup/sp_IndexCleanup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ BEGIN
SET NOCOUNT ON;
BEGIN TRY
SELECT
@version = '2.5',
@version_date = '20260420';
@version = '2.6',
@version_date = '20260501';

IF
/* Check SQL Server 2012+ for FORMAT and CONCAT functions */
Expand Down
4 changes: 2 additions & 2 deletions sp_LogHunter/sp_LogHunter.sql
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ SET DATEFORMAT MDY;

BEGIN
SELECT
@version = '3.5',
@version_date = '20260420';
@version = '3.6',
@version_date = '20260501';

IF @help = 1
BEGIN
Expand Down
4 changes: 2 additions & 2 deletions sp_PerfCheck/sp_PerfCheck.sql
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ BEGIN
Set version information
*/
SELECT
@version = N'2.5',
@version_date = N'20260420';
@version = N'2.6',
@version_date = N'20260501';

/*
Help section, for help.
Expand Down
4 changes: 2 additions & 2 deletions sp_PressureDetector/sp_PressureDetector.sql
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
SET LANGUAGE us_english;

SELECT
@version = '6.5',
@version_date = '20260420';
@version = '6.6',
@version_date = '20260501';


IF @help = 1
Expand Down
4 changes: 2 additions & 2 deletions sp_QueryReproBuilder/sp_QueryReproBuilder.sql
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ BEGIN TRY

/*Version*/
SELECT
@version = '1.5',
@version_date = '20260420';
@version = '1.6',
@version_date = '20260501';

/*Help*/
IF @help = 1
Expand Down
4 changes: 2 additions & 2 deletions sp_QueryStoreCleanup/sp_QueryStoreCleanup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ BEGIN
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT
@version = '1.5',
@version_date = '20260420';
@version = '1.6',
@version_date = '20260501';

/*
Help section
Expand Down
4 changes: 2 additions & 2 deletions sp_QuickieCache/sp_QuickieCache.sql
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ BEGIN
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT
@version = '1.5',
@version_date = '20260420';
@version = '1.6',
@version_date = '20260501';

/*
╔══════════════════════════════════════════════════╗
Expand Down
4 changes: 2 additions & 2 deletions sp_QuickieStore/sp_QuickieStore.sql
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ BEGIN TRY
These are for your outputs.
*/
SELECT
@version = '6.5',
@version_date = '20260420';
@version = '6.6',
@version_date = '20260501';

/*
Helpful section! For help.
Expand Down
Loading