I have list of MATERIALIZED VIEWs and I would like to know the underlying tables in the MVs. This is required to decide whether the MV is ready to be refreshed of not.
How can I get list of all tables underlying in a MATERIALIZED VIEW
Collapse
X
-
Tags: None
-
A bit out of my knowledge; however, reading through the oracle stuff I have on hand, the metadata viewer may be your best chance:
dbms_metadata.g et_ddl
Looks like a raw dump so the formatting will be up for you to figure out... I've searched on Materialized View and Metadata and have turned up a few dozen such scripts so this appears to be the way to go.Last edited by zmbd; Aug 6 '18, 03:00 PM.
Comment