Skip to content

Commit 1ff4bde

Browse files
authored
Merge pull request #147 from LowlyDBA/development
update urls / version tracking
2 parents 267184a + 374ab82 commit 1ff4bde

File tree

8 files changed

+388
-388
lines changed

8 files changed

+388
-388
lines changed

appveyor/sqlcover/Coverage.opencoverxml

Lines changed: 362 additions & 364 deletions
Large diffs are not rendered by default.

appveyor/sqlcover/[dbo].[sp_doc]

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

1313
/*
14-
sp_doc - Part of the DBA MultiTool https://lowlydba.com/dba-multitool
14+
sp_doc - Always have current documentation by generating it on the fly in markdown.
15+
16+
Part of the DBA MultiTool http://dba-multitool.org
1517

16-
Version: 09112020
18+
Version: 20201008
1719

1820
MIT License
1921

@@ -48,7 +50,6 @@ BEGIN
4850
,@ParmDefinition NVARCHAR(500)
4951
,@QuotedDatabaseName SYSNAME
5052
,@Msg NVARCHAR(MAX)
51-
,@LastUpdated NVARCHAR(20) = '2020-10-06'
5253
-- Variables used for Emoji mode
5354
,@Yes VARCHAR(20) = 'yes'
5455
,@No VARCHAR(20) = 'no'

appveyor/sqlcover/[dbo].[sp_helpme]

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ CREATE PROCEDURE [dbo].[sp_helpme]
88
AS
99

1010
/*
11-
sp_helpme - Part of the DBA MultiTool https://lowlydba.com/dba-multitool
11+
sp_helpme - A drop-in modern alternative to sp_help.
1212

13-
Version: 09112020
13+
Part of the DBA MultiTool http://dba-multitool.org
14+
15+
Version: Version: 20201008
1416

1517
MIT License
1618

@@ -54,8 +56,7 @@ BEGIN
5456
,@HasMasked BIT = 0
5557
,@SQLString NVARCHAR(MAX) = N''
5658
,@Msg NVARCHAR(MAX) = N''
57-
,@ParmDefinition NVARCHAR(500)
58-
,@LastUpdated NVARCHAR(20) = '2020-09-18';
59+
,@ParmDefinition NVARCHAR(500);
5960

6061
/* Find Version */
6162
IF (@SqlMajorVersion = 0)

appveyor/sqlcover/[dbo].[sp_sizeoptimiser]

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ WITH RECOMPILE
1515
AS
1616

1717
/*
18-
sp_sizeoptimiser - Part of the DBA MultiTool https://lowlydba.com/dba-multitool
18+
sp_sizeoptimiser - Recommends space saving measures for data footprints.
1919

20-
Version: 09112020
20+
Part of the DBA MultiTool http://dba-multitool.org
21+
22+
Version: 20201008
2123

2224
MIT License
2325

@@ -59,7 +61,6 @@ BEGIN
5961
,@HasPersistedSamplePercent BIT = 0
6062
,@CheckNumber TINYINT = 0
6163
,@EngineEdition TINYINT
62-
,@LastUpdated NVARCHAR(20) = '2020-10-06'
6364
,@CheckSQL NVARCHAR(MAX) = N''
6465
,@Msg NVARCHAR(MAX) = N''
6566
,@DbName SYSNAME = N''
@@ -191,8 +192,6 @@ BEGIN
191192
RAISERROR(@Msg, 10, 1) WITH NOWAIT;
192193
SET @Msg = '------------';
193194
RAISERROR(@Msg, 10, 1) WITH NOWAIT;
194-
SET @Msg = CONCAT('Version: ', @LastUpdated);
195-
RAISERROR(@Msg, 10, 1) WITH NOWAIT;
196195
SET @Msg = CONCAT('Time: ', GETDATE());
197196
RAISERROR(@Msg, 10, 1) WITH NOWAIT;
198197
SET @Msg = CONCAT('SQL Major Version: ', @SqlMajorVersion);

install_dba-multitool.sql

-140 Bytes
Binary file not shown.

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 & 5 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''
@@ -296,8 +297,6 @@ BEGIN
296297
RAISERROR(@Msg, 10, 1) WITH NOWAIT;
297298
SET @Msg = '------------';
298299
RAISERROR(@Msg, 10, 1) WITH NOWAIT;
299-
SET @Msg = CONCAT('Version: ', @LastUpdated);
300-
RAISERROR(@Msg, 10, 1) WITH NOWAIT;
301300
SET @Msg = CONCAT('Time: ', GETDATE());
302301
RAISERROR(@Msg, 10, 1) WITH NOWAIT;
303302
SET @Msg = CONCAT('SQL Major Version: ', @SqlMajorVersion);

0 commit comments

Comments
 (0)