Skip to content

Commit b315a9c

Browse files
author
John McCall
committed
update urls / version tracking
1 parent f1aae72 commit b315a9c

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

sp_doc.sql

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,11 @@ WITH RECOMPILE
6464
AS
6565

6666
/*
67-
sp_doc - Part of the DBA MultiTool https://lowlydba.com/dba-multitool
67+
sp_doc - Always have current documentation by generating it on the fly in markdown.
68+
69+
Part of the DBA MultiTool http://dba-multitool.org
6870
69-
Version: 09112020
71+
Version: 20201008
7072
7173
MIT License
7274
@@ -101,7 +103,6 @@ BEGIN
101103
,@ParmDefinition NVARCHAR(500)
102104
,@QuotedDatabaseName SYSNAME
103105
,@Msg NVARCHAR(MAX)
104-
,@LastUpdated NVARCHAR(20) = '2020-10-06'
105106
-- Variables used for Emoji mode
106107
,@Yes VARCHAR(20) = 'yes'
107108
,@No VARCHAR(20) = 'no'

sp_helpme.sql

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@ ALTER PROCEDURE [dbo].[sp_helpme]
4949
AS
5050

5151
/*
52-
sp_helpme - Part of the DBA MultiTool https://lowlydba.com/dba-multitool
52+
sp_helpme - A drop-in modern alternative to sp_help.
5353
54-
Version: 09112020
54+
Part of the DBA MultiTool http://dba-multitool.org
55+
56+
Version: Version: 20201008
5557
5658
MIT License
5759
@@ -95,8 +97,7 @@ BEGIN
9597
,@HasMasked BIT = 0
9698
,@SQLString NVARCHAR(MAX) = N''
9799
,@Msg NVARCHAR(MAX) = N''
98-
,@ParmDefinition NVARCHAR(500)
99-
,@LastUpdated NVARCHAR(20) = '2020-09-18';
100+
,@ParmDefinition NVARCHAR(500);
100101

101102
/* Find Version */
102103
IF (@SqlMajorVersion = 0)

sp_sizeoptimiser.sql

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,11 @@ WITH RECOMPILE
120120
AS
121121

122122
/*
123-
sp_sizeoptimiser - Part of the DBA MultiTool https://lowlydba.com/dba-multitool
123+
sp_sizeoptimiser - Recommends space saving measures for data footprints.
124124
125-
Version: 09112020
125+
Part of the DBA MultiTool http://dba-multitool.org
126+
127+
Version: 20201008
126128
127129
MIT License
128130
@@ -164,7 +166,6 @@ BEGIN
164166
,@HasPersistedSamplePercent BIT = 0
165167
,@CheckNumber TINYINT = 0
166168
,@EngineEdition TINYINT
167-
,@LastUpdated NVARCHAR(20) = '2020-10-06'
168169
,@CheckSQL NVARCHAR(MAX) = N''
169170
,@Msg NVARCHAR(MAX) = N''
170171
,@DbName SYSNAME = N''

0 commit comments

Comments
 (0)