Or is there any oracle data dictionary to tell me which tables are referenced in (both) views?
I want to know what table links are used in DML. I prefer to use the oracle package, as it may be standalone in the database.
But other suggestions are welcome. Open source is welcome.
Here is a link to the syntax diagram for defining table_reference: http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_10002.htm#i2126863
Are there any parsers?
Venkataramesh (dba_snapshots) , / . , USER_DEPENDENCIES:
select name, type, referenced_name, referenced_type from user_dependencies where type = 'MATERIALIZED VIEW' order by name
dba_snapshots. , , / .