diff --git a/String Functions/README.md b/String Functions/README.md index c016e946..5ad35f4d 100644 --- a/String Functions/README.md +++ b/String Functions/README.md @@ -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 ``` diff --git a/sp_HealthParser/sp_HealthParser.sql b/sp_HealthParser/sp_HealthParser.sql index 8a3d093d..4e2376ba 100644 --- a/sp_HealthParser/sp_HealthParser.sql +++ b/sp_HealthParser/sp_HealthParser.sql @@ -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 diff --git a/sp_HumanEvents/sp_HumanEvents.sql b/sp_HumanEvents/sp_HumanEvents.sql index 4bac773a..c6cf0c0f 100644 --- a/sp_HumanEvents/sp_HumanEvents.sql +++ b/sp_HumanEvents/sp_HumanEvents.sql @@ -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 diff --git a/sp_HumanEvents/sp_HumanEventsBlockViewer.sql b/sp_HumanEvents/sp_HumanEventsBlockViewer.sql index 6b4f985a..a5cea08a 100644 --- a/sp_HumanEvents/sp_HumanEventsBlockViewer.sql +++ b/sp_HumanEvents/sp_HumanEventsBlockViewer.sql @@ -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 diff --git a/sp_IndexCleanup/sp_IndexCleanup.sql b/sp_IndexCleanup/sp_IndexCleanup.sql index 21bcc65e..dcb7e347 100644 --- a/sp_IndexCleanup/sp_IndexCleanup.sql +++ b/sp_IndexCleanup/sp_IndexCleanup.sql @@ -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 */ diff --git a/sp_LogHunter/sp_LogHunter.sql b/sp_LogHunter/sp_LogHunter.sql index 25119669..4adec03f 100644 --- a/sp_LogHunter/sp_LogHunter.sql +++ b/sp_LogHunter/sp_LogHunter.sql @@ -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 diff --git a/sp_PerfCheck/sp_PerfCheck.sql b/sp_PerfCheck/sp_PerfCheck.sql index 096b809f..713484c8 100644 --- a/sp_PerfCheck/sp_PerfCheck.sql +++ b/sp_PerfCheck/sp_PerfCheck.sql @@ -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. diff --git a/sp_PressureDetector/sp_PressureDetector.sql b/sp_PressureDetector/sp_PressureDetector.sql index 08454131..afed0133 100644 --- a/sp_PressureDetector/sp_PressureDetector.sql +++ b/sp_PressureDetector/sp_PressureDetector.sql @@ -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 diff --git a/sp_QuickieStore/sp_QuickieStore.sql b/sp_QuickieStore/sp_QuickieStore.sql index e3168cb6..6d30b242 100644 --- a/sp_QuickieStore/sp_QuickieStore.sql +++ b/sp_QuickieStore/sp_QuickieStore.sql @@ -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.