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
3,333 changes: 2,491 additions & 842 deletions Install-All/DarlingData.sql

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sp_HealthParser/sp_HealthParser.sql
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ BEGIN

SELECT
@version = '3.6',
@version_date = '20260501';
@version_date = '20260701';

IF @help = 1
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion sp_HumanEvents/sp_HumanEvents.sql
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT
@version = '7.7',
@version_date = '20260601';
@version_date = '20260701';

IF @help = 1
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion sp_HumanEvents/sp_HumanEventsBlockViewer.sql
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT
@version = '5.6',
@version_date = '20260501';
@version_date = '20260701';

IF @help = 1
BEGIN
Expand Down
4 changes: 3 additions & 1 deletion sp_IndexCleanup/sp_IndexCleanup.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
SET ANSI_NULLS ON;
SET ANSI_PADDING ON;
SET ANSI_WARNINGS ON;
SET ARITHABORT ON;
SET CONCAT_NULL_YIELDS_NULL ON;
Expand Down Expand Up @@ -74,7 +76,7 @@ SET NOCOUNT ON;
BEGIN TRY
SELECT
@version = '2.7',
@version_date = '20260601';
@version_date = '20260701';

IF
/* Check SQL Server 2012+ for FORMAT and CONCAT functions */
Expand Down
2 changes: 1 addition & 1 deletion sp_LogHunter/sp_LogHunter.sql
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ SET DATEFORMAT MDY;
BEGIN
SELECT
@version = '3.6',
@version_date = '20260501';
@version_date = '20260701';

IF @help = 1
BEGIN
Expand Down
4 changes: 3 additions & 1 deletion sp_PerfCheck/sp_PerfCheck.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
SET ANSI_NULLS ON;
SET ANSI_PADDING ON;
SET ANSI_WARNINGS ON;
SET ARITHABORT ON;
SET CONCAT_NULL_YIELDS_NULL ON;
Expand Down Expand Up @@ -65,7 +67,7 @@ BEGIN
*/
SELECT
@version = N'2.6',
@version_date = N'20260501';
@version_date = N'20260701';

/*
Help section, for help.
Expand Down
2 changes: 1 addition & 1 deletion sp_PressureDetector/sp_PressureDetector.sql
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ SET LANGUAGE us_english;

SELECT
@version = '6.6',
@version_date = '20260501';
@version_date = '20260701';


IF @help = 1
Expand Down
2 changes: 1 addition & 1 deletion sp_QueryReproBuilder/sp_QueryReproBuilder.sql
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ BEGIN TRY
/*Version*/
SELECT
@version = '1.6',
@version_date = '20260501';
@version_date = '20260701';

/*Help*/
IF @help = 1
Expand Down
4 changes: 3 additions & 1 deletion sp_QuickieCache/sp_QuickieCache.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
SET ANSI_NULLS ON;
SET ANSI_PADDING ON;
SET ANSI_WARNINGS ON;
SET ARITHABORT ON;
SET CONCAT_NULL_YIELDS_NULL ON;
Expand Down Expand Up @@ -77,7 +79,7 @@ BEGIN

SELECT
@version = '1.6',
@version_date = '20260501';
@version_date = '20260701';

/*
╔══════════════════════════════════════════════════╗
Expand Down
2 changes: 1 addition & 1 deletion sp_QuickieStore/sp_QuickieStore.sql
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ These are for your outputs.
*/
SELECT
@version = '6.7',
@version_date = '20260601';
@version_date = '20260701';

/*
Helpful section! For help.
Expand Down
Loading