Oracle 视图 V$PROXY_PDB_TARGETS 官方解释,作用,如何使用详细说明
本站中文解释
:
V$PROXY_PDB_TARGETS是Oracle的一个视图,用于查看从外部的源PDB(不在CDB中的PDB)创建到CDB中的Proxy PDB的目标状态。V$PROXY_PDB_TARGETS包含了实例级和数据库级元数据,可以把这个视图用于从外部源PDB查询现有データベースレベルとインスタンスレベルの代理PDBの情报。
用于使用这个视图,我们可以使用下面的SQL语句:
select * from V$PROXY_PDB_TARGETS;
官方英文解释
V$PROXY_PDB_TARGETS
provides information about the target of a proxy PDB.
Column | Datatype | Description |
---|---|---|
|
|
The ID of the container to which the data pertains. Possible values include: n: Where n is the container ID of a proxy PDB |
|
|
Port number that the target of the proxy PDB has registered with the listener, and which will be used by the proxy PDB to connect to the target |
|
|
Host name where the target of the proxy PDB is running, and which will be used by the proxy PDB to connect to the target |
|
|
Service name that the target of the proxy PDB has registered with the listener, and which will be used by the proxy PDB to connect to the target |
|
|
User name used by the proxy PDB to connect to the target of the proxy PDB. If null, the name of the connected user will be used. |
See Also:
Oracle Multitenant
Administrator’s Guide for information about creating proxy PDBs