What is Extended Stored Procedure in MS SQL Server

前端 未结 2 2061
一整个雨季
一整个雨季 2021-02-20 01:05

I know about Stored Procedure in MS SQL Server. But I dont have a clear idea about Extended Stored Procedure in MS SQL Server. What is it? Explain it with a simple example. Than

2条回答
  •  [愿得一人]
    2021-02-20 01:31

    Extended stored procedures are stored procedures that call functions from DLL files. You can read the article How to use extended stored procedures to learn more.

    However, extended stored procedures are deprecated and you should avoid using them if possible. CLR Integration should be used instead.

提交回复
热议问题