BEGIN
DBMS_SNAPSHOT.REFRESH('MATERIALIZED_VIEW_ADI');
END;
Summary : Refreshing a Materialized View.
----------
Dictionary
ADI = NAME
BEGIN
DBMS_SNAPSHOT.REFRESH('MATERIALIZED_VIEW_ADI');
END;
select table_name, constraint_name, status, owner from all_constraints where r_owner = 'TABLO_SAHIBININ_ISMI' and constraint_type = 'R' and r_constraint_name in ( select constraint_name from all_constraints where constraint_type in ('P', 'U') and table_name = 'TABLO_ISMI' and owner = 'TABLO_SAHIBININ_ISMI' ) order by table_name, constraint_nameSummary ------- Finding associated tables in Oracle DB