We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f85a24 commit 06c88beCopy full SHA for 06c88be
1 file changed
uninstall_dba-multitool.sql
@@ -40,3 +40,9 @@ IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[sp
40
END
41
GO
42
43
+/* Drop sp_help_reglovin */
44
+IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[sp_help_reglovin]') AND [type] IN (N'P', N'PC'))
45
+ BEGIN;
46
+ DROP PROCEDURE [dbo].[sp_help_reglovin];
47
+ END
48
+GO
0 commit comments