Skip to content

Commit 8ab88e5

Browse files
authored
fix typos & add sp_hexadecimal
1 parent 91d4084 commit 8ab88e5

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

uninstall_dba-multitool.sql

+9-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,15 @@ 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'))
43+
/* Drop sp_help_revlogin & sp_hexadecimal */
44+
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[sp_help_revlogin]') AND [type] IN (N'P', N'PC'))
4545
BEGIN;
46-
DROP PROCEDURE [dbo].[sp_help_reglovin];
46+
DROP PROCEDURE [dbo].[sp_help_revlogin];
4747
END
4848
GO
49+
50+
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[sp_hexadecimal]') AND [type] IN (N'P', N'PC'))
51+
BEGIN;
52+
DROP PROCEDURE [dbo].[sp_hexadecimal];
53+
END
54+
GOs

0 commit comments

Comments
 (0)