MS SQL Server 中的扩展存储过程是什么?

发布于 2024-10-10 14:10:05 字数 30 浏览 0 评论 0原文

SQL Server 中的扩展存储过程是什么?

What is an extended stored procedure in SQL Server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦巷 2024-10-17 14:10:05

扩展存储过程是从 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.

青衫负雪 2024-10-17 14:10:05

它们驻留在 master 数据库内,您可以在各自的数据库中使用命令“sp_helpextendedproc”。

参见下面的屏幕截图:

在此处输入图像描述

They reside inside the master database, you can use the command "sp_helpextendedproc", in respective database.

See below screen shot:

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文