Oracle 视图 ALL_REPL_DBNAME_MAPPING 官方解释,作用,如何使用详细说明
本站中文解释
ALL_REPL_DBNAME_MAPPING视图提供了Oracle Streams环境中记录的数据库之间的名称映射信息。
使用ALL_REPL_DBNAME_MAPPING视图的用途:
1)可以对目标数据库及其元数据进行查询,从而了解Oracle Streams环境中组成所有数据库之间的关系。
2)可以检查数据库的匹配键,以确定正确的数据库之间是否存在映射关系。
3)可以查询源和目标数据库之间的映射,以确定Object Name Mapping(ONM)是否已正确创建。
使用ALL_REPL_DBNAME_MAPPING视图:
可以通过以下语句来查询ALL_REPL_DBNAME_MAPPING:
SELECT * FROM ALL_REPL_DBNAME_MAPPING;
官方英文解释
ALL_REPL_DBNAME_MAPPING
provides details about the database name mapping in replication for the current user.
Related View
DBA_REPL_DBNAME_MAPPING
provides details about the database name mapping in replication.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
The fully qualified global name of the root in a multitenant container database (CDB) where the changes originated |
|
|
|
The fully qualified global name of the pluggable database (PDB) where the changes originated |
|
|
|
The container name of the database where the changes originated |
See Also:
“DBA_REPL_DBNAME_MAPPING”