Oracle DML table_reference 是否存在解析器?
或者是否有任何 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当快照涉及多个表和/或视图时,Venkataramesh 的答案(dba_snapshots)仅提供部分答案 - 要获取所涉及对象的完整列表,您可以使用 USER_DEPENDENCIES 视图:
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:
使用数据字典视图 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.