Oracle 视图 DBA_RCHILD 官方解释,作用,如何使用详细说明
本站中文解释
VIEW
Oracle视图DBA_RCHILDVIEW的功能是报告在RowId模式下的子视图,即母视图上的ROWID是子视图上的列名。这些列名会根据母系模式上所包含的行顺序以及某些可能被唯一标识符编号所标识。
使用这个视图可以提供关于在RowId模式下,各个视图关系及父、子视图之间的关系的信息。
使用方法:
1. 查询主视图(母视图):
SELECT * FROM DBA_RCHILDVIEW WHERE VIEW_NAME = ”;
2. 查询子视图:
SELECT * FROM DBA_RCHILDVIEW WHERE PARENT_VIEW = ”;
官方英文解释
DBA_RCHILD
displays all the children in any refresh group.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Internal identifier of the refresh group |
|
|
|
|
Owner of the object in the refresh group |
|
|
|
Name of the object in the refresh group |
|
|
Type of the object in the refresh group |