Oracle DML table_reference 是否存在解析器?

发布于 2024-08-26 04:06:42 字数 414 浏览 4 评论 0原文

或者是否有任何 Oracle 数据字典可以告诉我在(物化)视图中引用了哪些表?

我希望找出 DML 中使用了哪些表引用。我更喜欢使用 oracle 包,因为它可以独立包含在数据库中。

但欢迎其他建议。开源非常受欢迎。

以下是 table_reference 定义的语法图的链接: http://download.oracle.com/ docs/cd/B19306_01/server.102/b14200/statements_10002.htm#i2126863

是否存在解析器?

Or are there any oracle data dictionary to tell me which tables are being referenced in (materalised) views?

I wish to find out what tables references are used in a DML. I prefer to use an oracle package as it can be self contained in the database.

But other suggestions welcome. Open source very welcome.

Here is the link to the syntax diagram of the table_reference definition:
http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_10002.htm#i2126863

Do any parsers exist?

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

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

发布评论

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

评论(2

樱娆 2024-09-02 04:06:42

当快照涉及多个表和/或视图时,Venkataramesh 的答案(dba_snapshots)仅提供部分答案 - 要获取所涉及对象的完整列表,您可以使用 USER_DEPENDENCIES 视图:

select name, type, referenced_name, referenced_type
from user_dependencies
where type = 'MATERIALIZED VIEW'
order by name

Venkataramesh's answer (dba_snapshots) only provides part of the answer when the snapshots involve multiple tables and/or views - to get the full list of objects involved you can use the USER_DEPENDENCIES view:

select name, type, referenced_name, referenced_type
from user_dependencies
where type = 'MATERIALIZED VIEW'
order by name
不知在何时 2024-09-02 04:06:42

使用数据字典视图 dba_snapshots。它有一个主列来说明使用/引用的主表是什么。

Use the data dictionary view dba_snapshots. It has the master column in it to say what is the master table used/referenced.

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