【Data Platform】/⤷ SQL, T-SQL

[2k] 확장 저장 프로시저 등록하기

디비랑 2008. 9. 7. 00:42
  1. /**********************************************************************************************
    -- Title : [2k] 확장 저장 프로시저 등록하기
    -- Reference : 웹검색
    -- Key word : addextendedproc
    **********************************************************************************************/
    -- 해당 dll Copy
    /*
    D:\>cd Microsoft SQL Server\MSSQL\Binn
    D:\Microsoft SQL Server\MSSQL\Binn>dir xplog70.dll
      D 드라이브의 볼륨: 데이터
      볼륨 일련 번호: 2014-9898
      D:\Microsoft SQL Server\MSSQL\Binn 디렉터리
      2002-12-17  05:25p              70,208 xplog70.dll
                  1개 파일          70,208 바이트
                  0 디렉터리   7,339,614,208 바이트 남음
    */

    -- sp_addextendedproc로 등록
    USE master

    EXEC sp_addextendedproc 'xp_proc', 'ExtSP01.DLL'
     
    -- sp_helpextendedproc로 확인
    */
    name                dll
    ------------------- ----------------------------------
    sp_cursorprepexec   (server internal)
    sp_cursorunprepare  (server internal)
    sp_droporphans      (server internal)
    sp_GetMBCSCharLen   xpstar.dll
    sp_IsMBCSLeadByte   xpstar.dll
    sp_MSgetversion     xpstar.dll
    sp_OACreate         odsole70.dll
    sp_OADestroy        odsole70.dll
    sp_replcmds         replcmds extended procedure
    sp_replcounters     replcounters extended procedure
    sp_repldone         repldone extended procedure
    sp_replflush        replflush extended procedure
    ...
    */