Oracle 11gR1
DBA_MVIEW_REFRESH_TIMES
describes refresh times of all materialized views in the database. Its columns are the same as those in ALL_MVIEW_REFRESH_TIMES
.
· ALL_MVIEW_REFRESH_TIMES
describes refresh times of the materialized views accessible to the current user.
· USER_MVIEW_REFRESH_TIMES
describes refresh times of the materialized views owned by the current user.
Column | Datatype | NULL | Description |
|
|
| Owner of the materialized view |
|
|
| Name of the materialized view |
|
| | Owner of the master table |
|
| | Name of the master table |
|
| | The last refresh |
Note:
1. Show materialized view tables and masters
select owner || '.' || name mview
, master_owner || '.' || master master
from dba_mview_refresh_times
No comments:
Post a Comment