반응형
/********************************************************************************************
-- Title : [2k5] sp_MS_marksystemobject를 이용한 시스템 저장 프로시저 등록
-- Reference : BOL
-- Key word : 시스템 프로시저 시스템프로시저 시스템저장프로시저 sp_error_input
********************************************************************************************/

-- 시스템 프로시저로 등록
EXEC sp_configure N'allow updates', 1;
RECONFIGURE WITH OVERRIDE;

EXEC sp_MS_marksystemobject '[dbo].[sp_error_input]';

EXEC sp_configure N'allow updates', 0;
RECONFIGURE WITH OVERRIDE;

-- 어떤 사용자도 호출할 수 있도록 허용
USE master;
GO

GRANT EXECUTE ON [dbo].[sp_error_input] TO [public]
GO
반응형

+ Recent posts