Skip to content
Merged

Dev #620

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 String Functions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ Usage:
```sql
SELECT
sc.strip_characters
FROM dbo.strip_characters(N'abc123!@#', N'[0-9]') AS sc;
FROM dbo.strip_characters(N'abc123!@#', N'0-9') AS sc;
-- Returns: abc!@#

-- Self-contained version (no dependency on Numbers table)
SELECT
sc.strip_characters
FROM dbo.strip_characters_cte(N'abc123!@#', N'[^a-z]') AS sc;
FROM dbo.strip_characters_cte(N'abc123!@#', N'^a-z') AS sc;
-- Returns: abc
```

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

SELECT
@version = '2.5',
@version_date = '20250501';
@version = '2.6',
@version_date = '20250601';

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 @@ -87,8 +87,8 @@ SET XACT_ABORT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT
@version = '6.5',
@version_date = '20250501';
@version = '6.6',
@version_date = '20250601';

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 = '4.5',
@version_date = '20250501';
@version = '4.6',
@version_date = '20250601';

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 = '1.5',
@version_date = '20250501';
@version = '1.6',
@version_date = '20250601';

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 @@ -72,8 +72,8 @@ SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

BEGIN
SELECT
@version = '2.5',
@version_date = '20250501';
@version = '2.6',
@version_date = '20250601';

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 @@ -63,8 +63,8 @@ BEGIN
Set version information
*/
SELECT
@version = N'1.5',
@version_date = N'20250501';
@version = N'1.6',
@version_date = N'20250601';

/*
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 @@ -76,8 +76,8 @@ SET XACT_ABORT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT
@version = '5.5',
@version_date = '20250501';
@version = '5.6',
@version_date = '20250601';


IF @help = 1
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 @@ -140,8 +140,8 @@ END;
These are for your outputs.
*/
SELECT
@version = '5.5',
@version_date = '20250501';
@version = '5.6',
@version_date = '20250601';

/*
Helpful section! For help.
Expand Down