MS SQL Server 中的扩展存储过程是什么?
SQL Server 中的扩展存储过程是什么?
What is an extended stored procedure in SQL Server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
SQL Server 中的扩展存储过程是什么?
What is an extended stored procedure in SQL Server?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
扩展存储过程是从 DLL 文件调用函数的存储过程。您可以阅读如何使用扩展存储过程一文来了解更多信息。
但是,扩展存储过程已弃用并且如果可能的话,您应该避免使用它们。应改用 CLR 集成。
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.
它们驻留在 master 数据库内,您可以在各自的数据库中使用命令“sp_helpextendedproc”。
参见下面的屏幕截图:
They reside inside the master database, you can use the command "sp_helpextendedproc", in respective database.
See below screen shot: