如何在 Oracle 中通过 xmltype 解析 XML
Posted
技术标签:
【中文标题】如何在 Oracle 中通过 xmltype 解析 XML【英文标题】:How to parse XML by xmltype in Oracle 【发布时间】:2016-03-02 09:15:10 【问题描述】:当我尝试解析 XML 文档时,XPath 属性出现了一点问题。 这是我的例子:
DECLARE
px_return XMLTYPE
:= XMLTYPE (
'<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Header xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<h:AxisValues xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:h="urn:/microsoft/multichannelframework/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:/microsoft/multichannelframework/">
<User xmlns="">FSCD</User>
<Solution xmlns="">Multicare</Solution>
<ApplicationalUser xmlns=""/>
<ApplicationalUserSystem xmlns=""/>
<SystemUser xmlns=""/>
<SystemUserSystem xmlns=""/>
<Proxy xmlns="">0</Proxy>
</h:AxisValues>
</SOAP:Header>
<SOAP:Body xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<ns1:maintainMandateResponse xmlns:ns1="urn:enterprise.com/ws/SAP/Finantial/MaintainMandate/V1">
<return>
<messageType>E</messageType>
</return>
</ns1:maintainMandateResponse>
</SOAP:Body>
</soapenv:Envelope>');
lv_msgType VARCHAR2 (20);
BEGIN
SELECT Return.msgType
INTO lv_msgType
FROM XMLTABLE (
xmlnamespaces (
DEFAULT 'enterprise.com/ws/SAP/Finantial/MaintainMandate/V1',
'http://schemas.xmlsoap.org/soap/envelope/' AS "soapenv",
'http://schemas.xmlsoap.org/soap/envelope/' AS "SOAP",
'enterprise.com/ws/SAP/Finantial/MaintainMandate/V1' AS "ns1"),
'//soapenv:Envelope/SOAP:Body/ns1:maintainMandateResponse'
PASSING px_return
COLUMNS msgType VARCHAR2 (1) PATH 'messageType') Return;
DBMS_OUTPUT.put_line ('Message type: ' || lv_msgType);
END;
我收到 NO_DATA_FOUND 异常,因为我在此解析方法中找不到结果。
我尝试了很多不同的策略,包括将return
放入 PATH 或 XQUery 字符串中,但均未成功。
我认为这是一个小而简单的问题,但我找不到。 提前致谢! 菲利普
【问题讨论】:
【参考方案1】:您的 ns1
命名空间声明中缺少 urn:
前缀。您还忽略了 <return>
节点级别,并且您有一个不正确的默认命名空间,因为您有没有任何命名空间的子节点。所以你需要:
SELECT Return.msgType
INTO lv_msgType
FROM XMLTABLE (
xmlnamespaces (
'http://schemas.xmlsoap.org/soap/envelope/' AS "soapenv",
'http://schemas.xmlsoap.org/soap/envelope/' AS "SOAP",
'urn:enterprise.com/ws/SAP/Finantial/MaintainMandate/V1' AS "ns1"),
'/soapenv:Envelope/SOAP:Body/ns1:maintainMandateResponse'
PASSING px_return
COLUMNS msgType VARCHAR2 (1) PATH 'return/messageType') Return;
得到:
PL/SQL procedure successfully completed.
Message type: E
当然也可以将return移到XPath中,这里的效果是一样的:
'/soapenv:Envelope/SOAP:Body/ns1:maintainMandateResponse/return'
PASSING px_return
COLUMNS msgType VARCHAR2 (1) PATH 'messageType') Return;
【讨论】:
谢谢亚历克斯。这显然是一个小路径问题。以上是关于如何在 Oracle 中通过 xmltype 解析 XML的主要内容,如果未能解决你的问题,请参考以下文章
使用 XMLType 在 oracle 表中加载 XML 的过程
如何在 Oracle 存储过程中返回 xmltypes 的结果