zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

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

Oracle官方XML 使用 如何 详细 作用 说明
2023-06-13 09:11:10 时间
本站中文解释

ALL_XML_SCHEMA_ELEMENTS 是Oracle的内置视图,它显示在数据库中所有用户的XML类型的定义中的xml元素。

它用于根据XML类型的定义查找XML元素名称和类型,比如它显示XML类型的定义,包括节点的名称、XML的类型、节点的属性和子元素。

此类查找可以帮助开发人员从XML文档中提取信息和构造语句。

使用方法:

查找某个用户定义的XML View:
SELECT * FROM ALL_XML_SCHEMA_ELEMENTS WHERE OWNER =

查找指定XML View中的某一元素:
SELECT * FROM ALL_XML_SCHEMA_ELEMENTS
WHERE TYPE_NAME =
AND OWNER =
AND ELEMENT_NAME =

官方英文解释

ALL_XML_SCHEMA_ELEMENTS describes all the elements and their properties accessible to the current user.

Related Views


USER_XML_SCHEMA_ELEMENTS describes all the elements and their properties owned by the current user. This view does not display the OWNER column.


The URL of the schema within which the element is defined

Refer to the See Also note below for links to more information about the schemaurl attribute for an XML schema.


Indicates whether an attribute was defined using a reference in the XML schema (1) or not (0)


Oracle XML DB Developer’s
Guide for information about registering an XML schema with Oracle XML DB


Oracle XML DB Developer’s
Guide for information about restrictions for an XML schema URL


我想要获取技术服务或软件
服务范围:MySQL、ORACLE、SQLSERVER、MongoDB、PostgreSQL 、程序问题
服务方式:远程服务、电话支持、现场服务,沟通指定方式服务
技术标签:数据恢复、安装配置、数据迁移、集群容灾、异常处理、其它问题

本站部分文章参考或来源于网络,如有侵权请联系站长。
数据库远程运维 Oracle 视图 ALL_XML_SCHEMA_ELEMENTS 官方解释,作用,如何使用详细说明