Oracle 视图 ALL_ZONEMAPS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_ZONEMAPS视图显示用户拥有权限跨数据库链接后所定义的所有复杂网络区域地图,这些地图用于将连接从一个数据库到另一个数据库的物理位置映射到网络地址,以及将网络地址映射回物理位置。
使用方法:通过对ALL_ZONEMAPS视图的查询,可以获得网络段和逻辑位置映射的相关信息。例如,下面的查询列出了最新的三个版本的网络地图:
SELECT version, zone_name, map_type
FROM all_zonemaps
ORDER BY version DESC
LIMIT 3;
官方英文解释
ALL_ZONEMAPS
describes all the zone maps accessible to the user.
Related Views
DBA_ZONEMAPS
describes all the zone maps in the database.USER_ZONEMAPS
describes all the zone maps owned by the user.
Column | Datatype | NULL | Description |
---|---|---|---|
|
| Owner of the zone map | |
|
| Name of the zone map | |
|
| Owner of the fact table of the zone map | |
|
| Name of the fact table on which the zone map is defined | |
|
| Scale factor of the zone map | |
|
| Indicates whether the zone map is hierarchical ( | |
|
| Indicates whether the zone map is created with the | |
|
| Indicates whether the zone map is automatic ( | |
|
| Zone map defining query | |
|
| Length of defining query in bytes | |
|
| Indicates whether the zone map is enabled for pruning ( | |
|
| Refresh mode for the zone map:
| |
|
| Refresh method for the zone map
| |
|
| The last refresh method used for the zone map:
| |
|
| Time of the last refresh | |
|
| Indicates whether the zone map is invalid due to some DDL ( | |
|
| Indicates whether the zone map is stale because of DML operations and cannot be used for pruning ( | |
|
| Indicates whether the zone map is partly stale ( | |
|
| Indicates whether the zone map has missing zones ( | |
|
| Indicates whether the zone map has been marked unusable by the owner ( | |
|
| Current compile state of the zone map:
Similar to |
Footnote 1 This column is available starting with Oracle Database 21c.
Note:
This view is intended for use with Oracle Exadata release 12.1.2.1.1 or later.
See Also:
“DBA_ZONEMAPS”
“USER_ZONEMAPS”
Oracle Database Data
Warehousing Guide for more information about zone maps