oracle:选择有关函数/过程的信息
我想从 Oracle 数据库检索有关过程/函数的信息。我知道,我可以使用 ALL_PROCEDURES 和 USER_OBJECTS 表,但它们只告诉我现有过程/函数的名称。我想获得返回类型和参数而不解析任何源。在Oracle下可以吗?这在 PostgreSQL 下非常简单,并且可以在 MySQL 下完成(据我所知 5.5 下的争论)。
I would like to retrieve information about procedures/functions from Oracle database. I know, that I can use ALL_PROCEDURES
and USER_OBJECTS
tables, but they only inform me about names of existing procedures/functions. I would like to get return type and argument without parsing any source. Is that possible under Oracle? It's pretty easy under PostgreSQL and can be done under MySQL (argument under 5.5 AFAIK).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您想要
ALL_ARGUMENTS
视图(或USER_ARGUMENTS
或DBA_ARGUMENTS
)It sounds like you want the
ALL_ARGUMENTS
view (orUSER_ARGUMENTS
orDBA_ARGUMENTS
)