Skip to content

Commit 0b198bd

Browse files
authored
Update In-memory_OLTP_diagnostic_script.sql
1 parent 6bfedb1 commit 0b198bd

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Scripts/In-memory_OLTP_diagnostic_script.sql

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@ IF OBJECT_ID('dbo.usp_inMemoryOLTP_diag', 'P') IS NULL EXECUTE ('CREATE PROCEDUR
4848
GO
4949

5050
ALTER PROCEDURE [dbo].[usp_inMemoryOLTP_diag] (
51-
@instanceLevelOnly BIT = 0
52-
, @Debug BIT = 0
51+
@instanceLevelOnly BIT = 0
52+
, @dbName VARCHAR(256) = 'ALL'
53+
, @Debug BIT = 0
5354
)
5455
AS BEGIN
5556

@@ -75,8 +76,6 @@ AS BEGIN
7576
######################################################################################################################
7677
*/
7778

78-
DECLARE @dbName VARCHAR(256) = 'ALL'
79-
8079
--DROP TABLE IF EXISTS #inmemDatabases;
8180
IF OBJECT_ID('tempdb..#inmemDatabases') IS NOT NULL DROP TABLE #inmemDatabases;
8281
SELECT name

0 commit comments

Comments
 (0)