How Extended Stored Procedures Work

ms164743.note(ko-kr,SQL.90).gif중요:
Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 가능한 한 빨리 수정하십시오. Use CLR Integration instead.

The process by which an extended stored procedure works is:

  1. When a client executes an extended stored procedure, the request is transmitted in tabular data stream (TDS) or Simple Object Access Protocol (SOAP) format from the client application to Microsoft SQL Server.
  2. SQL Server searches for the DLL associated with the extended stored procedure, and loads the DLL if it is not already loaded.
  3. SQL Server calls the requested extended stored procedure (implemented as a function inside the DLL).
  4. The extended stored procedure passes result sets and return parameters back to the server by through the Extended Stored Procedure API.

참고 항목

관련 자료

Database Engine Extended Stored Procedure Programming

도움말 및 정보

SQL Server 2005 지원 받기