Skip to content

Commit 06c88be

Browse files
authored
drop sp_help_reglovin
1 parent 3f85a24 commit 06c88be

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

uninstall_dba-multitool.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,9 @@ IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[sp
4040
END
4141
GO
4242

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

Comments
 (0)