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. Thank you.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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.
回答2:
They reside inside the master database, you can use the command "sp_helpextendedproc", in respective database.
See below screen shot:
标签:
sql-server-2005