You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- some code formating, test for 2014 and 2017 SQL Servers, add CATCH block
- fix issue with @instanceLevelOnly for SQL Server 2014, rename to sp_BlitzInMemoryOLTP
Copyright (C) 2017 Ned Otter (except where other authors are credited)
9
18
All rights reserved.
10
-
19
+
11
20
You may alter this code for your own *non-commercial* purposes. You may
12
21
republish altered code as long as you include this copyright and give due credit.
13
-
14
-
22
+
23
+
15
24
THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF
16
25
ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
17
26
TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
18
27
PARTICULAR PURPOSE.
19
28
20
29
Tested on:
30
+
SQL 2014 SP2 CU8
21
31
SQL 2016 SP1/CU4
22
32
SQL 2017 RTM
23
33
SQL 2017 CU1
@@ -39,44 +49,39 @@ Original link: http://nedotter.com/archive/2017/10/in-memory-oltp-diagnostic-scr
39
49
18 Nov 2017 changed #temp to #inmemDatabases and created section for which native modules are loaded (right now only checks for procedures)
40
50
19 Nov 2017 changed logic/fixed bug in loaded module display
41
51
19 Nov 2017 added longest running xtp queries, as a possible way to investigate GC blocking
42
-
29 Nov 2017 changed 'DROP IF EXISTS' like code to 'IF OBJECT_ID' like
43
-
05 Dec 2017 changed 'EXEC' like code to 'EXEC sp_executesql' like (except lines 979, 1105), added CASE operator to exclude not supported staff from query
44
-
06 Dec 2017 changed query to simple stored procedure
52
+
Modfified author: Alexey Nagosrskiy
53
+
2017-11-29 changed 'DROP IF EXISTS' like code to 'IF OBJECT_ID' like
54
+
2017-12-05 changed 'EXEC' like code to 'EXEC sp_executesql', added CASE operator to exclude not supported staff from query
55
+
2017-12-06 trasnform query to a stored procedure
56
+
2017-12-07 Konstantin Taranov: some code formating, test for 2014 and 2017 SQL Servers, add CATCH block
57
+
2017-12-11 Konstantin Taranov: fix issue with @instanceLevelOnly for SQL Server 2014, rename to sp_BlitzInMemoryOLTP
0 commit comments