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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -