Skip to content

Commit d9d16a0

Browse files
committed
Language: Insanity -> Problems
1 parent 136de61 commit d9d16a0

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

Deprecated/sp_BlitzIndex_SQL_Server_2005.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Known limitations of this version:
4343
-- Example 1: index creates use ONLINE=? instead of ONLINE=ON / ONLINE=OFF. This is because it's important for the user to understand if it's going to be offline and not just run a script.
4444
-- Example 2: they do not include all the options the index may have been created with (padding, compression filegroup/partition scheme etc.)
4545
-- (The compression and filegroup index create syntax isn't trivial because it's set at the partition level and isn't trivial to code. Two people have voted for wanting it so far.)
46-
- Doesn't advise you about data modeling for clustered indexes and primary keys (primarily looks for signs of insanity.)
46+
- Doesn't advise you about data modeling for clustered indexes and primary keys (primarily looks for signs of problems.)
4747
- Found something? Let us know at [email protected].
4848
4949
Thanks for using sp_BlitzIndex(TM)!

Install-All-Scripts.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4022,7 +4022,7 @@ AS
40224022
IF @BringThePain = 0 AND 50 <= (SELECT COUNT(*) FROM sys.databases) AND @CheckUserDatabaseObjects = 1
40234023
BEGIN
40244024
SET @CheckUserDatabaseObjects = 0;
4025-
PRINT 'Running sp_Blitz @CheckUserDatabaseObjects = 1 on a server with 50+ databases may cause temporary insanity for the server and/or user.';
4025+
PRINT 'Running sp_Blitz @CheckUserDatabaseObjects = 1 on a server with 50+ databases may cause temporary problems for the server and/or user.';
40264026
PRINT 'If you''re sure you want to do this, run again with the parameter @BringThePain = 1.';
40274027
INSERT INTO #BlitzResults
40284028
( CheckID ,
@@ -23015,7 +23015,7 @@ Known limitations of this version:
2301523015
filegroup/partition scheme etc.)
2301623016
-- (The compression and filegroup index create syntax is not trivial because it is set at the partition
2301723017
level and is not trivial to code.)
23018-
- Does not advise you about data modeling for clustered indexes and primary keys (primarily looks for signs of insanity.)
23018+
- Does not advise you about data modeling for clustered indexes and primary keys (primarily looks for signs of problems.)
2301923019

2302023020
Unknown limitations of this version:
2302123021
- We knew them once, but we forgot.
@@ -23857,7 +23857,7 @@ BEGIN TRY
2385723857
VALUES ( 1,
2385823858
0,
2385923859
N'You''re trying to run sp_BlitzIndex on a server with ' + CAST(@NumDatabases AS NVARCHAR(8)) + N' databases. ',
23860-
N'Running sp_BlitzIndex on a server with 50+ databases may cause temporary insanity for the server and/or user.',
23860+
N'Running sp_BlitzIndex on a server with 50+ databases may cause temporary problems for the server and/or user.',
2386123861
N'If you''re sure you want to do this, run again with the parameter @BringThePain = 1.',
2386223862
'http://FirstResponderKit.org',
2386323863
'',
@@ -23884,7 +23884,7 @@ BEGIN TRY
2388423884
bir.create_tsql,
2388523885
bir.more_info
2388623886
FROM #BlitzIndexResults AS bir;
23887-
RAISERROR('Running sp_BlitzIndex on a server with 50+ databases may cause temporary insanity for the server', 12, 1);
23887+
RAISERROR('Running sp_BlitzIndex on a server with 50+ databases may cause temporary problems for the server', 12, 1);
2388823888
END;
2388923889

2389023890
RETURN;

Install-Core-Blitz-No-Query-Store.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ AS
11601160
IF @BringThePain = 0 AND 50 <= (SELECT COUNT(*) FROM sys.databases) AND @CheckUserDatabaseObjects = 1
11611161
BEGIN
11621162
SET @CheckUserDatabaseObjects = 0;
1163-
PRINT 'Running sp_Blitz @CheckUserDatabaseObjects = 1 on a server with 50+ databases may cause temporary insanity for the server and/or user.';
1163+
PRINT 'Running sp_Blitz @CheckUserDatabaseObjects = 1 on a server with 50+ databases may cause temporary problems for the server and/or user.';
11641164
PRINT 'If you''re sure you want to do this, run again with the parameter @BringThePain = 1.';
11651165
INSERT INTO #BlitzResults
11661166
( CheckID ,
@@ -20153,7 +20153,7 @@ Known limitations of this version:
2015320153
filegroup/partition scheme etc.)
2015420154
-- (The compression and filegroup index create syntax is not trivial because it is set at the partition
2015520155
level and is not trivial to code.)
20156-
- Does not advise you about data modeling for clustered indexes and primary keys (primarily looks for signs of insanity.)
20156+
- Does not advise you about data modeling for clustered indexes and primary keys (primarily looks for signs of problems.)
2015720157

2015820158
Unknown limitations of this version:
2015920159
- We knew them once, but we forgot.
@@ -20995,7 +20995,7 @@ BEGIN TRY
2099520995
VALUES ( 1,
2099620996
0,
2099720997
N'You''re trying to run sp_BlitzIndex on a server with ' + CAST(@NumDatabases AS NVARCHAR(8)) + N' databases. ',
20998-
N'Running sp_BlitzIndex on a server with 50+ databases may cause temporary insanity for the server and/or user.',
20998+
N'Running sp_BlitzIndex on a server with 50+ databases may cause temporary problems for the server and/or user.',
2099920999
N'If you''re sure you want to do this, run again with the parameter @BringThePain = 1.',
2100021000
'http://FirstResponderKit.org',
2100121001
'',
@@ -21022,7 +21022,7 @@ BEGIN TRY
2102221022
bir.create_tsql,
2102321023
bir.more_info
2102421024
FROM #BlitzIndexResults AS bir;
21025-
RAISERROR('Running sp_BlitzIndex on a server with 50+ databases may cause temporary insanity for the server', 12, 1);
21025+
RAISERROR('Running sp_BlitzIndex on a server with 50+ databases may cause temporary problems for the server', 12, 1);
2102621026
END;
2102721027

2102821028
RETURN;

Install-Core-Blitz-With-Query-Store.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ AS
11601160
IF @BringThePain = 0 AND 50 <= (SELECT COUNT(*) FROM sys.databases) AND @CheckUserDatabaseObjects = 1
11611161
BEGIN
11621162
SET @CheckUserDatabaseObjects = 0;
1163-
PRINT 'Running sp_Blitz @CheckUserDatabaseObjects = 1 on a server with 50+ databases may cause temporary insanity for the server and/or user.';
1163+
PRINT 'Running sp_Blitz @CheckUserDatabaseObjects = 1 on a server with 50+ databases may cause temporary problems for the server and/or user.';
11641164
PRINT 'If you''re sure you want to do this, run again with the parameter @BringThePain = 1.';
11651165
INSERT INTO #BlitzResults
11661166
( CheckID ,
@@ -20153,7 +20153,7 @@ Known limitations of this version:
2015320153
filegroup/partition scheme etc.)
2015420154
-- (The compression and filegroup index create syntax is not trivial because it is set at the partition
2015520155
level and is not trivial to code.)
20156-
- Does not advise you about data modeling for clustered indexes and primary keys (primarily looks for signs of insanity.)
20156+
- Does not advise you about data modeling for clustered indexes and primary keys (primarily looks for signs of problems.)
2015720157

2015820158
Unknown limitations of this version:
2015920159
- We knew them once, but we forgot.
@@ -20995,7 +20995,7 @@ BEGIN TRY
2099520995
VALUES ( 1,
2099620996
0,
2099720997
N'You''re trying to run sp_BlitzIndex on a server with ' + CAST(@NumDatabases AS NVARCHAR(8)) + N' databases. ',
20998-
N'Running sp_BlitzIndex on a server with 50+ databases may cause temporary insanity for the server and/or user.',
20998+
N'Running sp_BlitzIndex on a server with 50+ databases may cause temporary problems for the server and/or user.',
2099920999
N'If you''re sure you want to do this, run again with the parameter @BringThePain = 1.',
2100021000
'http://FirstResponderKit.org',
2100121001
'',
@@ -21022,7 +21022,7 @@ BEGIN TRY
2102221022
bir.create_tsql,
2102321023
bir.more_info
2102421024
FROM #BlitzIndexResults AS bir;
21025-
RAISERROR('Running sp_BlitzIndex on a server with 50+ databases may cause temporary insanity for the server', 12, 1);
21025+
RAISERROR('Running sp_BlitzIndex on a server with 50+ databases may cause temporary problems for the server', 12, 1);
2102621026
END;
2102721027

2102821028
RETURN;

sp_Blitz.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1198,7 +1198,7 @@ AS
11981198
IF @BringThePain = 0 AND 50 <= (SELECT COUNT(*) FROM sys.databases) AND @CheckUserDatabaseObjects = 1
11991199
BEGIN
12001200
SET @CheckUserDatabaseObjects = 0;
1201-
PRINT 'Running sp_Blitz @CheckUserDatabaseObjects = 1 on a server with 50+ databases may cause temporary insanity for the server and/or user.';
1201+
PRINT 'Running sp_Blitz @CheckUserDatabaseObjects = 1 on a server with 50+ databases may cause temporary problems for the server and/or user.';
12021202
PRINT 'If you''re sure you want to do this, run again with the parameter @BringThePain = 1.';
12031203
INSERT INTO #BlitzResults
12041204
( CheckID ,

sp_BlitzIndex.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Known limitations of this version:
7777
filegroup/partition scheme etc.)
7878
-- (The compression and filegroup index create syntax is not trivial because it is set at the partition
7979
level and is not trivial to code.)
80-
- Does not advise you about data modeling for clustered indexes and primary keys (primarily looks for signs of insanity.)
80+
- Does not advise you about data modeling for clustered indexes and primary keys (primarily looks for signs of problems.)
8181
8282
Unknown limitations of this version:
8383
- We knew them once, but we forgot.
@@ -924,7 +924,7 @@ BEGIN TRY
924924
VALUES ( 1,
925925
0,
926926
N'You''re trying to run sp_BlitzIndex on a server with ' + CAST(@NumDatabases AS NVARCHAR(8)) + N' databases. ',
927-
N'Running sp_BlitzIndex on a server with 50+ databases may cause temporary insanity for the server and/or user.',
927+
N'Running sp_BlitzIndex on a server with 50+ databases may cause temporary problems for the server and/or user.',
928928
N'If you''re sure you want to do this, run again with the parameter @BringThePain = 1.',
929929
'http://FirstResponderKit.org',
930930
'',
@@ -951,7 +951,7 @@ BEGIN TRY
951951
bir.create_tsql,
952952
bir.more_info
953953
FROM #BlitzIndexResults AS bir;
954-
RAISERROR('Running sp_BlitzIndex on a server with 50+ databases may cause temporary insanity for the server', 12, 1);
954+
RAISERROR('Running sp_BlitzIndex on a server with 50+ databases may cause temporary problems for the server', 12, 1);
955955
END;
956956

957957
RETURN;

0 commit comments

Comments
 (0)