File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,15 @@ IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[sp
4040 END
4141GO
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
4848GO
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
You can’t perform that action at this time.
0 commit comments