热衷于获取存储过程 SQL 文本?

发布于 2024-12-17 10:00:14 字数 578 浏览 1 评论 0原文

有没有办法从数据字典中检索(和更新)实际的存储过程 SQL 文本?

一个示例用例是为 Advantage Data Architect 编写一个替代工具。然而目前我确实需要这个来解决 ADS 9.1 中的错误。

我想一定有类似的东西:

EXECUTE PROCEDURE sp_GetStoredProcedureProperty('PROCNAME', 'SQLTEXT');

我发现了一个名为 sp_ModifyProcedureProperty 的系统过程,可用于修改 SP 的某些部分:

http://devzone.advantagedatabase.com/dz/WebHelp/Advantage10.1/index.html?master_sp_modifyprocedureproperty.htm

Is there any way to retrieve (and update) the actual stored procedure SQL text from a data dictionary?

A sample use case for this would be to write a replacement tool for the Advantage Data Architect. However at the moment I really need this to workaround a bug in ADS 9.1.

I imagine there must be something like:

EXECUTE PROCEDURE sp_GetStoredProcedureProperty('PROCNAME', 'SQLTEXT');

I found a system procedure called sp_ModifyProcedureProperty that can be used to modify some parts of a SP:

http://devzone.advantagedatabase.com/dz/WebHelp/Advantage10.1/index.html?master_sp_modifyprocedureproperty.htm

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

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

发布评论

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

评论(1

淡淡的优雅 2024-12-24 10:00:14

字典中有一个名为 system.storedprocedures 的系统表,其中有一个名为 SQL_Script 的字段可以满足我的需要。

例子:

SELECT SQL_Script FROM system.storedprocedures WHERE Name = 'PROCNAME';

There is a system table in the dictionary called system.storedprocedures which has a field named SQL_Script that does what I need.

Example:

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