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 theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Owner of the XML view |
|
|
|
Name of the XML view |
|
|
|
Name of the XML Schema that is used for the view definition |
|
|
|
Owner of the XML Schema that is used for the view definition |
|
|
|
Name of the XML SChema element that is used for the view |
See Also:
-
“DBA_XML_VIEWS”
-
“USER_XML_VIEWS”