我想从我的oracle表中的CLOB数据类型的xml字符串中提取错误代码。但当我试图提取它时,给我一个错误
ORA-19114: XPST0003 - error during parsing the XQuery expression:
LPX-00801: XQuery syntax error at 'return'
1 .w3.org/2001/XMLSchema-instance";for $i in //<Header errorCode= return $i
这是我的xml字符串,它存储在PROVISIONING_LOG表的RESPONSE列中:
<?xml version="1.0" encoding="ISO-8859-15"?>
<Order xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="sp.xsd">
<Header dateOfExecution="2014-10-01 00:03:06" externalId1="" messageId="1" orderId="0021417905" serviceProviderId="SP605" status="V" type="RES" errorCode="224" errorString="Subscription 201407162076606 not found." />
<Body>
<Oli>
<OliControl oliId="1" subscriptionId="201407162076606" errorCode="224" errorString="Subscription 201407162076606 not found." status="V" />
<DEASUB />
</Oli>
</Body>
</Order>
这是我试过的查询:
select x.*
from TEMP_PROVISIONING_LOG PL
CROSS JOIN XMLTable(XMLNAMESPACES (
'http://core.signup.data.soap.CDRator.com/xsd' as "Header"),
'for $i in //Order return $i'
passing XMLType(PL.RESPONSE)
columns error_code varchar2(100) path 'Header/@errorCode') x;
答案 0 :(得分:1)
我想你是在这之后:
with sample_data as (select xmltype('<?xml version="1.0" encoding="ISO-8859-15"?>
<Order xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="sp.xsd">
<Header dateOfExecution="2014-10-01 00:03:06" externalId1="" messageId="1" orderId="0021417905" serviceProviderId="SP605" status="V" type="RES" errorCode="224" errorString="Subscription 201407162076606 not found." />
<Body>
<Oli>
<OliControl oliId="1" subscriptionId="201407162076606" errorCode="224" errorString="Subscription 201407162076606 not found." status="V" />
<DEASUB />
</Oli>
</Body>
</Order>') response from dual)
select x.*
from sample_data tpl
cross join xmltable (XMLNAMESPACES ('http://www.w3.org/2001/XMLSchema-instance' as "Header"),
'/Order' passing tpl.response
columns error_code varchar2(100) path 'Header/@errorCode') x;
ERROR_CODE
--------------------------------------------------------------------------------
224
ETA:请改为尝试:
with TEMP_PROVISIONING_LOG as (select '<?xml version="1.0" encoding="ISO-8859-15"?>
<Order xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="sp.xsd">
<Header dateOfExecution="2014-10-01 00:03:06" externalId1="" messageId="1" orderId="0021417905" serviceProviderId="SP605" status="V" type="RES" errorCode="224" errorString="Subscription 201407162076606 not found." />
<Body>
<Oli>
<OliControl oliId="1" subscriptionId="201407162076606" errorCode="224" errorString="Subscription 201407162076606 not found." status="V" />
<DEASUB />
</Oli>
</Body>
</Order>' response from dual)
select *
from TEMP_PROVISIONING_LOG PL,
XMLTable(XMLNAMESPACES (
'http://core.signup.data.soap.CDRator.com/xsd' as "Header"),
'for $i in //Order return $i'
passing XMLType.createxml(PL.RESPONSE)
columns error_code varchar2(100) path 'Header/@errorCode') x;