File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ ALTER PROCEDURE [dbo].[sp_Blitz]
3434 @VersionCheckMode BIT = 0
3535WITH RECOMPILE
3636AS
37+ BEGIN
3738 SET NOCOUNT ON ;
3839 SET STATISTICS XML OFF ;
3940 SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED ;
@@ -10819,4 +10820,5 @@ IF @ProductVersionMajor >= 10 AND NOT EXISTS ( SELECT 1
1081910820 SET NUMERIC_ROUNDABORT ON ;
1082010821
1082110822 SET NOCOUNT OFF ;
10823+ END
1082210824GO
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ ALTER PROCEDURE [dbo].[sp_BlitzAnalysis] (
3434@Debug BIT = 0
3535)
3636AS
37+ BEGIN
3738SET NOCOUNT ON ;
3839SET STATISTICS XML OFF ;
3940
@@ -888,4 +889,5 @@ BEGIN
888889END
889890
890891
892+ END
891893GO
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ ALTER PROCEDURE dbo.sp_BlitzIndex
5353 @VersionCheckMode BIT = 0
5454WITH RECOMPILE
5555AS
56+ BEGIN
5657SET NOCOUNT ON ;
5758SET STATISTICS XML OFF ;
5859SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED ;
@@ -7634,4 +7635,5 @@ BEGIN CATCH
76347635
76357636 RETURN ;
76367637 END CATCH ;
7638+ END
76377639GO
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ ALTER PROCEDURE [dbo].[sp_DatabaseRestore]
5353 @RunStoredProcAfterRestore NVARCHAR (260 ) = NULL ,
5454 @EnableBroker BIT = 0
5555AS
56+ BEGIN
5657SET NOCOUNT ON ;
5758SET STATISTICS XML OFF ;
5859
@@ -1688,4 +1689,5 @@ IF @TestRestore = 1
16881689IF OBJECT_ID ( ' tempdb..#SplitFullBackups' ) IS NOT NULL DROP TABLE #SplitFullBackups;
16891690IF OBJECT_ID ( ' tempdb..#SplitDiffBackups' ) IS NOT NULL DROP TABLE #SplitDiffBackups;
16901691IF OBJECT_ID ( ' tempdb..#SplitLogBackups' ) IS NOT NULL DROP TABLE #SplitLogBackups;
1692+ END
16911693GO
You can’t perform that action at this time.
0 commit comments