sql - How could i update a table each time a materialized view is refreshed? -
so have table contains last modification or refresh date every mv in our db. update value each time mv refreshes. thought following possible, dont know how accomplish :
create materialized view ... . . ** update table after refresh ** . . select ......
thx in advance.
use dictionary
select mview_name , last_refresh_type,last_refresh_date all_mviews;
Comments
Post a Comment