How Extended Stored Procedures Work

ms164743.note(de-de,SQL.90).gifWichtig:
Dieses Feature wird in einer zukünftigen Version von Microsoft SQL Server entfernt. Verwenden Sie dieses Feature nicht zum Entwickeln neuer Anwendungen, und planen Sie das Ändern von Anwendungen, in denen es zurzeit verwendet wird, zum frühstmöglichen Zeitpunkt ein. 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.

Siehe auch

Andere Ressourcen

Database Engine Extended Stored Procedure Programming

Hilfe und Informationen

Informationsquellen für SQL Server 2005