Skip to content

Commit 4a09e00

Browse files
authored
Merge pull request #3423 from SeanKilleen/3250_insanity
Language Sensitivity: Insanity -> Problems
2 parents 985745d + 4b2a854 commit 4a09e00

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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 help@brentozar.com.
4848
4949
Thanks for using sp_BlitzIndex(TM)!

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)