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

本站中文解释

ALL_XML_VIEWS 视图主要用来视图指定用户的所有XML模式的数据。 这个视图可以被链接到重要的其他视图,如dba_objects,以获得使用这些模式的元数据。

例如,要查看用户“MyUser”的XML模式的数据,可以使用以下查询:

SELECT *
FROM all_xml_views
WHERE owner = ‘MyUser’;

使用这个视图可以更好地了解使用模式的对象,并将其用作特定用户的权限管理上下文,以及作为进一步分析数据模式的基础。

官方英文解释

ALL_XML_VIEWS describes the XML views accessible to the current user.

Related Views

  • DBA_XML_VIEWS describes all XML views the database.

  • USER_XML_VIEWS describes the XML views owned by the current user. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

Owner of the XML view

VIEW_NAME

VARCHAR2(128)

Name of the XML view

XMLSCHEMA

VARCHAR2(700)

Name of the XML Schema that is used for the view definition

SCHEMA_OWNER

VARCHAR2(128)

Owner of the XML Schema that is used for the view definition

ELEMENT_NAME

VARCHAR2(2000)

Name of the XML SChema element that is used for the view

See Also:

  • “DBA_XML_VIEWS”

  • “USER_XML_VIEWS”


数据运维技术 » Oracle 视图 ALL_XML_VIEWS 官方解释,作用,如何使用详细说明