如何在 Oracle PL/SQL 中解析简单的 XML 片段并将其加载到全局临时表中?
在 SQL Server 中,很容易解析包含用属性构造的简单 XML 片段的 vachar 变量,并将其加载到临时表中 - 请参阅下面的示例:
declare @UpdateXML VARCHAR(8000)
set @UpdateXML='<ArrayOfRecords>
<Record Field01="130" Field02="1700" Field03="C" />
<Record Field01="131" Field02="1701" Field03="C" />
<Record Field01="132" Field02="1702" Field03="C" />
</ArrayOfRecords>'
DECLARE @hdoc int
EXEC sp_xml_preparedocument @hdoc OUTPUT, @UpdateXML
INSERT
INTO #tblTemp(
[Field01],
[Field02],
[Field03]
)
SELECT *
FROM OPENXML(@hdoc, '//ArrayOfRecords/Record')
WITH ( Field01 int,
Field02 int,
Field03 char(1)
)
EXEC sp_xml_removedocument @hdoc
是否有一个简单的示例在 Oracle PL/SQL 中执行与此等效的操作?
Oracle 中有一个 DBMS_XMLSTORE 包,但它需要使用 ROWSET 和 ROW 元素的特定规范格式的 XML 片段。 DBMS_XMLSTORE 似乎不适用于 XML 属性。
另外,我不能 100% 确定是否需要创建 XML 片段的 XSD 并将其注册到 Oracle 数据库上,然后才能使用任何其他 PL/SQL XML 工具/查询。
谢谢!
In SQL Server it is easy to parse a vachar variable that contains a simple XML snippet constructed with attributes and load it into a temp table - see example below:
declare @UpdateXML VARCHAR(8000)
set @UpdateXML='<ArrayOfRecords>
<Record Field01="130" Field02="1700" Field03="C" />
<Record Field01="131" Field02="1701" Field03="C" />
<Record Field01="132" Field02="1702" Field03="C" />
</ArrayOfRecords>'
DECLARE @hdoc int
EXEC sp_xml_preparedocument @hdoc OUTPUT, @UpdateXML
INSERT
INTO #tblTemp(
[Field01],
[Field02],
[Field03]
)
SELECT *
FROM OPENXML(@hdoc, '//ArrayOfRecords/Record')
WITH ( Field01 int,
Field02 int,
Field03 char(1)
)
EXEC sp_xml_removedocument @hdoc
Is there a simple example that does the equivalent of this in Oracle PL/SQL?
In Oracle there is an DBMS_XMLSTORE package but it wants the XML snippet in a specific canonical format using ROWSET and ROW elements. DBMS_XMLSTORE does not appear to work with XML attributes.
Also, I am not 100% sure if I need to create an XSD of my XML snippet and register that on the Oracle database before I can use any of the other PL/SQL XML tools/queries.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
坦率地说,Oracle 的 XML DB 实现有大量令人眼花缭乱的选项,并且并不总是清楚(至少对我来说)哪一个适用于任何给定的场景。在这种特殊情况下,您想要的是 XMLTable(),它将 XQuery 转换为一组行。
首先我们创建一个表。
然后我们填充它......
最后我们证明它有效......
Oracle's XML DB implementation has a frankly bewildering number of options, and it is not always clear (at least to me) which one applies in any given scenario. In this particular case the one you want is XMLTable(), which turns an XQuery into a set of rows.
First we create a table.
Then we populate it ...
Finally we prove it worked....