Oracle 视图 DBA_CONTAINER_DATA 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图DBA_CONTAINER_DATA是一个数据字典视图,它会提供一些关于Oracle容器数据库(CDB)和全局数据库中存储数据和元数据的信息,例如CDB和PDB的名称,数据文件类型,Tablespace,Datafiles,Memory Structure等行为。它也用于显示所有的PDB状态参数(是否可解锁,关闭等)。它的使用方法非常直接,只需要执行SELECT语句,即可从中检索有关容器数据库的信息。例如:

SELECT * FROM DBA_CONTAINER_DATA;

这将显示数据库中所有容器数据库的信息。

官方英文解释

DBA_CONTAINER_DATA displays default (user-level) and object-specific CONTAINER_DATA attributes for container data objects.

Objects created with the CONTAINER_DATA clause include CONTAINER_DATA attributes.

Column Datatype NULL Description

USERNAME

VARCHAR2(128)

Name of the user whose attribute is described by this row

DEFAULT_ATTR

CHAR2(1)

An indicator of whether the attribute is a default attribute

OWNER

VARCHAR2(128)

Name of the object owner if the attribute is object-specific

OBJECT_NAME

VARCHAR2(128)

Name of the object if the attribute is object-specific

ALL_CONTAINERS

VARCHAR2(1)

An indicator of whether this attribute applies to all containers

CONTAINER_NAME

VARCHAR2(128)

Name of a container included in this attribute if it does not apply to all containers

See Also:

For more information about container data objects:

  • “CDB_* Views”

  • “ALL_TABLES”

  • “ALL_VIEWS”

  • “ALL_VIEWS_AE”

  • “V$ Views”

  • “GV$ Views”

  • Oracle Multitenant
    Administrator’s Guide

  • Oracle Database Security
    Guide

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《Oracle 视图 DBA_CONTAINER_DATA 官方解释,作用,如何使用详细说明》
文章链接:https://zhuji.vsping.com/262838.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。