Oracle 视图 ALL_XML_SCHEMA_NAMESPACES 官方解释,作用,如何使用详细说明
本站中文解释
ALL_XML_SCHEMA_NAMESPACES视图提供信息关于当前用户XML Schema 命名空间定义的名称、URI和版本号。
用途:通过查询ALL_XML_SCHEMA_NAMESPACES视图来获取当前用户所注册的XML Schema与相应的命名空间信息。
使用方法:
1. 连接到 Oracle 数据库:
首先,使用sqlplus工具连接数据库,并进入数据库:
SQL> connect sys@orcl as sysdba
enter password:
2. 查询ALL_XML_SCHEMA_NAMESPACES视图:
SQL> select * from all_xml_schema_namespaces;
此命令将会输出当前用户所注册的XML Schema与相应的命名空间信息。
3.退出数据库:
SQL> exit
此命令退出数据库,并关闭SQL * Plus
官方英文解释
ALL_XML_SCHEMA_NAMESPACES
describes all the available namespaces accessible to the current user.
Related Views
-
DBA_XML_SCHEMA_NAMESPACES
describes all the available namespaces. -
USER_XML_SCHEMA_NAMESPACES
describes all the available namespaces owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
User who owns the namespace |
|
|
|
The target namespace |
|
|
|
The URL of the schema Refer to the See Also note below for links to more information about the |
See Also:
-
“DBA_XML_SCHEMA_NAMESPACES”
-
“USER_XML_SCHEMA_NAMESPACES”
-
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