Skip to content

Commit 245541d

Browse files
authored
2019-12 Release (#2205)
* #2005 sp_Blitz version numbers (#2006) Working on #2005. * #2005 easier merges for versions Putting Version, VersionDate variables on a single line. Closes #2005. * #2010 sp_Blitz paused online index operations (#2011) Add warning for rows in sys.index_resumable_operations. Closes #2010. * Fix collation error. (#2014) * #2015 sp_BlitzCache sorting in Azure SQL DB (#2016) Instead of checking version numbers, look at sys.all_columns for the grant and spill columns. Closes #2015. * #2024 sp_BlitzQueryStore s.is_cursor error (#2025) Changed alias on a temp table to match other nearby aliases. Closes #2024. * First responder consistency check (#1997) * sp_Blitz update compile and runs on MSSQL 2014 * Update sp_Blitz.sql Added @debug handling - bug found for missing mandatory component * Update sp_Blitz.sql * Update sp_Blitz.sql CheckId familly: 226 - FRK consistency Messages: 2260 - First Responder kit consistency check has been unexpectedly modified (check names) 2261 - First Responder kit consistency check has been unexpectedly modified (dynamic query failure) 2262 - First Responder kit mandatory component called %s is missing 2263 - First Responder kit consistency check has been unexpectedly modified (checks ordering) 2264 - Component %s is not at the minimum version required to run this procedure 2265 - First Responder kit consistency check (Failed dynamic SP call to %s) 2266 - First Responder kit consistency: outdated component (%s) removed "everything ok message" * Resolves almost all Brent's comments except CHAR(92) change removed 2264 - Component %s is not at the minimum version required to run this procedure changed detailled finding message for previous 2264 message Checked compilation on SQL Server 2014 * #1994 sp_Blitz version checking (#2028) Changed wording from "consistency check" to "version check," updated check IDs, removed mandatory scripts. Closes #1994. * #1944 sp_BlitzIndex ignore databases (#2029) Adds new IgnoreDatabases parameter, and skips databases with >100 partitions. Closes #1944. * #2009 sp_BlitzFirst call BC differently (#2030) Use SkipAnalysis = 1, SortOrder = all when calling sp_BlitzCache. Closes #2009. * #2026 sp_BlitzCache show multiple plan count (#2031) Closes #2026. * #2017 sp_Blitz Evaluation Edition expiration check (#2032) Closes #2017. * #2018 sp_BlitzCache arith overflow (#2033) Changing MONEY on totals to BIGINT. Closes #2018. * #2019 sp_BlitzCache air_quote_actual plans (#2034) Closes #2019. * Add END in the right spot for IF @Help = 1 (#2035) The END for IF @Help = 1 was in the wrong place, making the procedure a no-op *unless* you also specify @Help = 1. * #2037 sp_BlitzLock support for AWS RDS (#2038) Skips update stats with options that RDS doesn't support. Closes #2037. * 2019_04_release_prep Bumping version numbers, building installation scripts. * Moved SQL header build outside of If block (#2040) * #2042 implicit transaction troubleshooting (#2043) Clarify warnings in sp_Blitz, sp_BlitzFirst. Closes #2042. * edit hyperlink (#2056) * add @OutputType = 'XML' (#2048) * Update sp_blitzcache to avoid arithmetic overflow errors (#2046) Updated sp_blitzcache to avoid arithmetic overflow errors - tabel definitions had changed to BIGINT but the actual logic in this section still casted values as money which was breaking the ceiling for this on our setup. I've pretty much blanket chantged everything except averages to be bigint and have been running for a few days with no failrues since so looks ok and worth someone who knows what they're doing casting an eye over it! * Update sp_ineachdb.sql (#2061) Added 2 Variables @SQLVersion: This was implemented so that large organizations with SQL Server 2008 and R2 can use this sproc. Currently without this change SQL Server versions 2008 and 2008R2 will error with the following. Msg 208, Level 16, State 1, Procedure sp_ineachdb, Line 176 Invalid object name 'sys.dm_hadr_database_replica_states'. @ServerName: This was added to account for VMware SnapShots at times @@ServerName will either come up NULL or with old server name. CONVERT(sysname, SERVERPROPERTY('ServerName')) is a better option and reduces minor nuisances. Feel free to blend in the code if you feel this brings value to the project. * ignore readable secondaries in sp_blitzcache (#2049) * ignore readable secondaries in sp_blitzcache this is a fix for issue #2027 * Checking for is_primary_replica column In sys.dm_hadr_database_replica_states. * 2019_07 Release Bumping version numbers and updating install scripts. * Set DBOwner after restoring database (#2082) * Default @RestoreDiff = NULL If @RestoreDiff IS NULL and @BackupPathDiff != null: treat RestoreDiff=1 * Set database owner after restore * Revert restorediff change from dev branch * Exclude Readable secondary DBs (#2073) Temp table added (#ReadableDBs) this table is populated with all read intent database id's which is used to filter out these database when querying against dm_exec_requests or sessions with a cross apply against a plan cache function. * #2067 Updating directory "/" fixing to work with URLs (#2071) * Updating directory "/" fixing to work with URLs Also correcting incorrect logging message for fixing @MoveLogDrive slashes * Fixing variable typo Data should be log * #2076 sp_BlitzIndex columnstore to table (#2085) When saving columnstore definitions to table, trim them to 4000 characters to avoid an overflow. Closes #2076. * @2060 sp_BlitzFirst 2TB RAM (#2086) Casting RAM as a BIGINT instead of INT. Closes #2060. * #2053 sp_BlitzIndex ignoring databases (#2087) Strip out CR/LF from @IgnoreDatabases, trim spaces afterwards. Closes #2053. * #2022 sp_BlitzCache disabling air_quote_actuals (#2088) This SQL 2019 & Azure SQL DB feature isn't ready yet, so disabling til Microsoft is ready. Closes #2022. * #2044 sp_Blitz new power mode (#2089) Adds Windows 10's new Ultimate Performance Power Mode, whatever that is. Closes #2044. * #2062 sp_BlitzFirst false alarm on index reorgs (#2091) Filtering for sql_text not like %alter index%'. Closes #2062 with duct tape. * #2052 sp_BlitzCache prioritization (#2092) Fixes bug in AirQuoteActual plans, plus if plan cache is 75% new as of today, raise priority 1 warning. Closes #2052. * #2070 sp_BlitzCache duplicated index count (#2093) Filters index recommendations by spid. Closes #2070. * sp_DatabaseRestore case bug Inconsistent case sensitivity. * 2019-09 release prep Bumping version numbers and dates. * 2019-08 release Updating multi-script installs. * #2097 sp_DatabaseRestore sysname caps (#2100) Change from uppercase to lowercase for case-sensitive systems. Closes #2097. * Issue 2063 selects with writes (#2101) * Update sp_BlitzCache.sql Adds check for selects that cause writes. * Update BC docs Adds a line to the documentation for BlitzCache, tidies up warning table message. * Fix compression query perf (#2103) Breaking this up into #temp tables has made it much faster on servers with many partitions. * Issue 2051 query hash sort (#2102) * Add query hash sort order Grabs top10 highest cpu consuming plans with highest count of query hashes (multiple plans), and runs BlitsCache to find them. * add a word why not? * Tweaks for query hash * URL housekeeping (#2098) * New Zealand is a real place and it's offensive for you to suggest otherwise 🥝 * revert edits to Install* scripts * #2111 sp_BlitzCache missing union all (#2112) Cleans up the documentation, closes #2111. * Added Uninstaller Script (#2105) * Added Uninstaller Script Fulfills request #2080 Deletes all the FirstResponderKit procedures from the current DB or all DBs via parameter * Case sensitive collation fixes Gotta love those case sensitive servers. * Remove stray semicolon (#2115) Closes #2114 Semicolon throws syntax error. * Fix roll up where clause (#2116) Closes #2113 Where clause should only look at flagged lines. * #2096 sp_BlitzFirst BST compatibility (#2117) Not really about BST, heh, but just using the wrong date/time format. Closes #2096. * 2109_sp_BlitzCache_AirQuoteActuals (#2118) If the AirQuoteActual plan is longer than the regular plan, use it. Closes #2109. * #2119 2019-09 release prep (#2120) Bumping version numbers, dates, install scripts. Closes #2119. * #2122 deprecating sp_foreachdb (#2123) Moving into the deprecated folder. Closes #2122. * #2124 Fix BlitzQueryStore Edition Check Comparison (#2125) * Issue 2127/fvanderhaegen (#2129) * #2127 sp_DatabaseRestore added parameters Blocksize, buffercount and maxtransfersize are added * Update sp_DatabaseRestore.sql * Update sp_BlitzIndex.sql (#2126) Fix Cannot resolve collation conflict between "Language_A" and "Language_B" in add operator occurring in ORDER BY statement column 3. * #2130 sp_Blitz blocked due to DMV bug (#2131) Added new SkipBlockingChecks parameter. Closes #2130. * Fix Cannot resolve collation conflict between "Language_A" and "Language_B" in add operator occurring in ORDER BY statement column 3. (#2133) * Update sp_BlitzIndex.sql Fix Cannot resolve collation conflict between "Language_A" and "Language_B" in add operator occurring in ORDER BY statement column 3. * Update sp_BlitzIndex.sql Fix Conversion failed when converting the varchar value 'x' to data type int. * #2135 sp_BlitzFirst log message dates (#2138) Closes #2135. * #2136 Fix BlitzQS DB Name Comparison for Query Store Check. (#2137) * #2141 sp_Blitz UNC backup check (#2142) Closes #2141. * #2143 sp_BlitzIndex missing index sort (#2144) Now ignores the old is_low column. Closes #2143. * corrected fix for issue #2149 (#2151) * fix for issue #2149 unused heaps were reported as used, see #2149 * corrected fix for issue #2149 * README.md clarifying StopAt parameter Clarifying sp_DatabaseRestore's StopAt parameter for #2152. * #2156 sp_BlitzCache query hash sorting (#2157) Can now sort by query hash plus a second sort field, and avoids calling the proc again. Closes #2156. * #2147 sp_BlitzLock in local time (#2158) Filters & displays local time instead of UTC. Closes #2147. * #2159 sp_BlitzFirst calling sp_BlitzWho (#2160) Fixes a few different related bugs - see the issue for details. Closes #2159. * #2155 sp_BlitzFirst adding SkipAnalysis param (#2161) Passes BlitzCacheSkipAnalysis parameter to sp_BlitzCache. Closes #2155. * #2162 add JoinKey columns to output tables (#2163) Closes #2162. * #2164 sp_BlitzFirst prepping BlitzCache joins (#2165) Adding query hash to outputs to join to sp_BlitzCache data. Also updating 2017 Hekaton counters while I'm in here. Closes #2162. * #2166 sp_BlitzWho alter table order (#2167) Create the table, THEN alter it, you moron. Closes #2166. * #2168 sp_BlitzCache MinutesBack (#2171) Now works with SortOrder = 'all'. Closes #2168. * #2170 sp_BlitzCache SortOrder All Dupes (#2173) Plans from the SortOrder = 'spills' were being classified as 'memory grant'. Closes #2170. * Updating README.md for SortOrder = all Clarifying how sp_BlitzCache SortOrder All works. Related to #2170. * 2019-10 Release Bumping version numbers. * #2190 update readme (#2192) To show sp_BlitzIndex support for OutputTableName is only for Mode = 2. Closes #2190. * Various Typo Fixes (#2186) * Added Uninstaller Script Fulfills request #2080 Deletes all the FirstResponderKit procedures from the current DB or all DBs via parameter * Case sensitive collation fixes Gotta love those case sensitive servers. * Update SqlServerVersions.sql Fixes #2181 * Fix Typo in BlitzFirst FIxes #2184 * Fixed dumb decisions * Update SqlServerVersions.sql (#2195) Adding SQL 2019 GDR for #2181. * #2183 sp_BlitzIndex ginormous index support (#2196) When logging to table, use MAX data sizes for drop_tsql, create_tsql, index_definition. Closes #2183. * sp_Blitz - removing sp_foreachdb Since we no longer need to check whether it's outdated. * #2177 sp_BlitzIndex add drop T-SQL (#2197) To table-level output. Closes #2177. * #2172 sp_BlitzCache BringThePain (#2201) If you use SortOrder = all and Top > 10, you now have to set BringThePain = 1. Closes #2172. * sp_BlitzCache tweaks to Unicode string building * #2203 prepping 2019_12 release (#2204) Bumping version numbers, dates, building combined installer script. Closes #2203.
1 parent fd5e1fb commit 245541d

18 files changed

+134
-115
lines changed

Install-All-Scripts.sql

Lines changed: 33 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SET NOCOUNT ON;
3030
BEGIN;
3131

3232

33-
SELECT @Version = '3.9', @VersionDate = '20191024';
33+
SELECT @Version = '3.91', @VersionDate = '20191202';
3434

3535
IF(@VersionCheckMode = 1)
3636
BEGIN
@@ -1522,7 +1522,7 @@ SET NOCOUNT ON;
15221522

15231523
BEGIN;
15241524

1525-
SELECT @Version = '3.9', @VersionDate = '20191024';
1525+
SELECT @Version = '3.91', @VersionDate = '20191202';
15261526

15271527
IF(@VersionCheckMode = 1)
15281528
BEGIN
@@ -2846,7 +2846,7 @@ AS
28462846
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
28472847

28482848

2849-
SELECT @Version = '7.9', @VersionDate = '20191024';
2849+
SELECT @Version = '7.91', @VersionDate = '20191202';
28502850
SET @OutputType = UPPER(@OutputType);
28512851

28522852
IF(@VersionCheckMode = 1)
@@ -7218,8 +7218,6 @@ BEGIN
72187218
' UNION ALL ' + @crlf +
72197219
' SELECT ''sp_DatabaseRestore'',''P'',0' + @crlf +
72207220
' UNION ALL ' + @crlf +
7221-
' SELECT ''sp_foreachdb'',''P'',0' + @crlf +
7222-
' UNION ALL ' + @crlf +
72237221
' SELECT ''sp_ineachdb'',''P'',0' + @crlf +
72247222
' UNION ALL' + @crlf +
72257223
' SELECT ''SqlServerVersions'',''U'',0' + @crlf +
@@ -11819,7 +11817,7 @@ AS
1181911817
SET NOCOUNT ON;
1182011818
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
1182111819

11822-
SELECT @Version = '3.9', @VersionDate = '20191024';
11820+
SELECT @Version = '3.91', @VersionDate = '20191202';
1182311821

1182411822
IF(@VersionCheckMode = 1)
1182511823
BEGIN
@@ -13578,7 +13576,7 @@ ALTER PROCEDURE dbo.sp_BlitzCache
1357813576
@SlowlySearchPlansFor NVARCHAR(4000) = NULL,
1357913577
@Reanalyze BIT = 0 ,
1358013578
@SkipAnalysis BIT = 0 ,
13581-
@BringThePain BIT = 0, /* This will forcibly set @Top to 2,147,483,647 */
13579+
@BringThePain BIT = 0 ,
1358213580
@MinimumExecutionCount INT = 0,
1358313581
@Debug BIT = 0,
1358413582
@CheckDateOverride DATETIMEOFFSET = NULL,
@@ -13592,7 +13590,7 @@ BEGIN
1359213590
SET NOCOUNT ON;
1359313591
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
1359413592

13595-
SELECT @Version = '7.9', @VersionDate = '20191024';
13593+
SELECT @Version = '7.91', @VersionDate = '20191202';
1359613594

1359713595

1359813596
IF(@VersionCheckMode = 1)
@@ -13751,7 +13749,7 @@ BEGIN
1375113749
UNION ALL
1375213750
SELECT N'@BringThePain',
1375313751
N'BIT',
13754-
N'This forces sp_BlitzCache to examine the entire plan cache. Be careful running this on servers with a lot of memory or a large execution plan cache.'
13752+
N'When using @SortOrder = ''all'' and @Top > 10, we require you to set @BringThePain = 1 so you understand that sp_BlitzCache will take a while to run.'
1375513753

1375613754
UNION ALL
1375713755
SELECT N'@QueryFilter',
@@ -14363,12 +14361,6 @@ BEGIN
1436314361
END
1436414362

1436514363

14366-
IF @BringThePain = 1
14367-
BEGIN
14368-
RAISERROR(N'You have chosen to bring the pain. Setting top to 2147483647.', 0, 1) WITH NOWAIT;
14369-
SET @Top = 2147483647;
14370-
END;
14371-
1437214364
/* Change duration from seconds to milliseconds */
1437314365
IF @DurationFilter IS NOT NULL
1437414366
BEGIN
@@ -15244,8 +15236,8 @@ IF @MinutesBack IS NOT NULL
1524415236
IF @SlowlySearchPlansFor IS NOT NULL
1524515237
BEGIN
1524615238
RAISERROR(N'Setting string search for @SlowlySearchPlansFor, so remember, this is gonna be slow', 0, 1) WITH NOWAIT;
15247-
SET @SlowlySearchPlansFor = REPLACE((REPLACE((REPLACE((REPLACE((@SlowlySearchPlansFor), N'[', N'_')), N']', N'_')), N'^', N'_')), N'''', N'''''');
15248-
SET @body_where += N' AND CAST(qp.query_plan AS NVARCHAR(MAX)) LIKE ''%' + @SlowlySearchPlansFor + '%'' ' + @nl;
15239+
SET @SlowlySearchPlansFor = REPLACE((REPLACE((REPLACE((REPLACE(@SlowlySearchPlansFor, N'[', N'_')), N']', N'_')), N'^', N'_')), N'''', N'''''');
15240+
SET @body_where += N' AND CAST(qp.query_plan AS NVARCHAR(MAX)) LIKE N''%' + @SlowlySearchPlansFor + N'%'' ' + @nl;
1524915241
END
1525015242

1525115243

@@ -19385,6 +19377,7 @@ RAISERROR('Beginning all sort loop', 0, 1) WITH NOWAIT;
1938519377

1938619378
IF (
1938719379
@Top > 10
19380+
AND @SkipAnalysis = 0
1938819381
AND @BringThePain = 0
1938919382
)
1939019383
BEGIN
@@ -20095,7 +20088,7 @@ BEGIN
2009520088
SET NOCOUNT ON;
2009620089
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
2009720090

20098-
SELECT @Version = '7.9', @VersionDate = '20191024';
20091+
SELECT @Version = '7.91', @VersionDate = '20191202';
2009920092

2010020093
IF(@VersionCheckMode = 1)
2010120094
BEGIN
@@ -21542,7 +21535,7 @@ BEGIN
2154221535
s.[host_name] AS HostName,
2154321536
r.[database_id] AS DatabaseID,
2154421537
DB_NAME(r.database_id) AS DatabaseName,
21545-
0 AS OpenTransactionCount
21538+
0 AS OpenTransactionCount,
2154621539
r.query_hash
2154721540
FROM sys.dm_os_waiting_tasks tBlocked
2154821541
INNER JOIN sys.dm_exec_sessions s ON tBlocked.blocking_session_id = s.session_id
@@ -24183,7 +24176,7 @@ AS
2418324176
SET NOCOUNT ON;
2418424177
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
2418524178

24186-
SELECT @Version = '7.9', @VersionDate = '20191024';
24179+
SELECT @Version = '7.91', @VersionDate = '20191202';
2418724180
SET @OutputType = UPPER(@OutputType);
2418824181

2418924182
IF(@VersionCheckMode = 1)
@@ -26340,6 +26333,15 @@ BEGIN
2634026333
sz.page_io_latch_wait_count,
2634126334
CONVERT(VARCHAR(10), (sz.page_io_latch_wait_in_ms / 1000) / 86400) + ':' + CONVERT(VARCHAR(20), DATEADD(s, (sz.page_io_latch_wait_in_ms / 1000), 0), 108) AS page_io_latch_wait_time,
2634226335
ct.create_tsql,
26336+
CASE
26337+
WHEN s.is_primary_key = 1 AND s.index_definition <> '[HEAP]'
26338+
THEN N'--ALTER TABLE ' + QUOTENAME(s.[schema_name]) + N'.' + QUOTENAME(s.[object_name])
26339+
+ N' DROP CONSTRAINT ' + QUOTENAME(s.index_name) + N';'
26340+
WHEN s.is_primary_key = 0 AND s.index_definition <> '[HEAP]'
26341+
THEN N'--DROP INDEX '+ QUOTENAME(s.index_name) + N' ON ' +
26342+
QUOTENAME(s.[schema_name]) + N'.' + QUOTENAME(s.[object_name]) + N';'
26343+
ELSE N''
26344+
END AS drop_tsql,
2634326345
1 AS display_order
2634426346
FROM #IndexSanity s
2634526347
LEFT JOIN #IndexSanitySize sz ON
@@ -26355,7 +26357,7 @@ BEGIN
2635526357
N'SQL Server First Responder Kit' ,
2635626358
N'http://FirstResponderKit.org' ,
2635726359
N'From Your Community Volunteers',
26358-
NULL,@DaysUptimeInsertValue,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
26360+
NULL,@DaysUptimeInsertValue,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
2635926361
0 AS display_order
2636026362
)
2636126363
SELECT
@@ -26380,7 +26382,8 @@ BEGIN
2638026382
page_latch_wait_time as [Page Latch Wait Time (D:H:M:S)],
2638126383
page_io_latch_wait_count AS [Page IO Latch Wait Count],
2638226384
page_io_latch_wait_time as [Page IO Latch Wait Time (D:H:M:S)],
26383-
create_tsql AS [Create TSQL]
26385+
create_tsql AS [Create TSQL],
26386+
drop_tsql AS [Drop TSQL]
2638426387
FROM table_mode_cte
2638526388
ORDER BY display_order ASC, key_column_names ASC
2638626389
OPTION ( RECOMPILE );
@@ -28704,12 +28707,12 @@ BEGIN;
2870428707
[schema_name] NVARCHAR(128),
2870528708
[table_name] NVARCHAR(128),
2870628709
[index_name] NVARCHAR(128),
28707-
[Drop_Tsql] NVARCHAR(4000),
28708-
[Create_Tsql] NVARCHAR(4000),
28710+
[Drop_Tsql] NVARCHAR(MAX),
28711+
[Create_Tsql] NVARCHAR(MAX),
2870928712
[index_id] INT,
2871028713
[db_schema_object_indexid] NVARCHAR(500),
2871128714
[object_type] NVARCHAR(15),
28712-
[index_definition] NVARCHAR(4000),
28715+
[index_definition] NVARCHAR(MAX),
2871328716
[key_column_names_with_sort_order] NVARCHAR(MAX),
2871428717
[count_key_columns] INT,
2871528718
[include_column_names] NVARCHAR(MAX),
@@ -29187,7 +29190,7 @@ BEGIN
2918729190
SET NOCOUNT ON;
2918829191
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
2918929192

29190-
SELECT @Version = '2.9', @VersionDate = '20191024';
29193+
SELECT @Version = '2.91', @VersionDate = '20191202';
2919129194

2919229195

2919329196
IF(@VersionCheckMode = 1)
@@ -30455,7 +30458,7 @@ BEGIN /*First BEGIN*/
3045530458
SET NOCOUNT ON;
3045630459
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
3045730460

30458-
SELECT @Version = '3.9', @VersionDate = '20191024';
30461+
SELECT @Version = '3.91', @VersionDate = '20191202';
3045930462
IF(@VersionCheckMode = 1)
3046030463
BEGIN
3046130464
RETURN;
@@ -36181,7 +36184,7 @@ BEGIN
3618136184
SET NOCOUNT ON;
3618236185
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
3618336186

36184-
SELECT @Version = '7.9', @VersionDate = '20191024';
36187+
SELECT @Version = '7.91', @VersionDate = '20191202';
3618536188

3618636189
IF(@VersionCheckMode = 1)
3618736190
BEGIN
@@ -37082,7 +37085,7 @@ SET NOCOUNT ON;
3708237085

3708337086
/*Versioning details*/
3708437087

37085-
SELECT @Version = '7.9', @VersionDate = '20191024';
37088+
SELECT @Version = '7.91', @VersionDate = '20191202';
3708637089

3708737090
IF(@VersionCheckMode = 1)
3708837091
BEGIN
@@ -38307,7 +38310,7 @@ AS
3830738310
BEGIN
3830838311
SET NOCOUNT ON;
3830938312

38310-
SELECT @Version = '2.9', @VersionDate = '20191024';
38313+
SELECT @Version = '2.91', @VersionDate = '20191202';
3831138314

3831238315
IF(@VersionCheckMode = 1)
3831338316
BEGIN

0 commit comments

Comments
 (0)