Oracle 11gR1
DBA_MVIEW_LOGS
describes all materialized view logs in the database. Its columns are the same as those in ALL_MVIEW_LOGS
.
· ALL_MVIEW_LOGS
describes all materialized view logs accessible to the current user.
· USER_MVIEW_LOGS
describes all materialized view logs owned by the current user.
Column | Datatype | NULL | Description |
|
| | Owner of the materialized view log |
|
| | Name of the master table or master materialized view whose changes are logged |
|
| | Name of the table where the changes to the master table or master materialized view are logged |
|
| | Obsolete with the release of Oracle8i and higher. Set to |
|
| | If |
|
| | If |
|
| | If |
|
| | If |
|
| | If |
|
| | If |
Note:
1. List all materialized view logs
select log_owner
, log_table
from dba_mview_logs;
No comments:
Post a Comment