【发布时间】:2017-06-01 07:22:58
【问题描述】:
我是 Oracle 的新手。现在我正在尝试解析 XML 并将其放入 VK_ACCOUNTS 表中。 我的 xml 示例在这里:
<?xml version="1.0" encoding="utf-8"?>
<response list="true">
<account>
<account_id>1656672360</account_id>
<account_type>general</account_type>
<account_status>1</account_status>
<access_role>reports</access_role>
</account>
</response>
我请求具有以下功能的 xml,据我所知,它正确返回了 xml:
create or replace function GET_CLOBFROMURL(
p_url varchar2,
p_charset varchar2 default 'UTF8'
) return clob
is
req utl_http.req;
resp utl_http.resp;
val varchar2(32547);
a clob;
BEGIN
a:='';
dbms_lob.createtemporary(a,true);
dbms_lob.open(a,dbms_lob.lob_readwrite);
req := utl_http.begin_request(p_url);
utl_http.set_body_charset(req, p_charset);
resp := utl_http.get_response(req);
LOOP
a := a||val;
utl_http.read_text(resp, val, 5000);
END LOOP;
utl_http.end_response(resp);
return a;
EXCEPTION
WHEN utl_http.end_of_body THEN
utl_http.end_response(resp);
return a;
WHEN others then
utl_http.end_response(resp);
raise;
END;
并获取 xml 到 xml_clob
xml_clob := tableau.get_clobFromUrl(REQUEST);
IF xml_clob != EMPTY_CLOB() THEN
insert into tableau.VK_ACCOUNTS(account_id, account_type, account_status, access_role)
SELECT
proc.account_id,
proc.account_type,
proc.account_status,
proc.access_role
FROM XMLTABLE('response/account' passing (select xmltype(xml_clob) resp FROM dual)
columns account_id number path '/account/account_id',
account_type varchar2(20) path '/account/account_type',
account_status number path '/account/account_status',
access_role varchar2(20) path '/account/access_role'
) proc;
COMMIT;
END IF;
END;
最后我得到一个错误:
ORA-31011: XML parsing failed
ORA-19202: Error occurred in XML
LPX-00209: PI names starting with XML are reserved
Error at line 3
ORA-06512: на "SYS.XMLTYPE", line 272
ORA-06512: на line 1
ORA-06512: на "TABLEAU.VK_LOADDATA", line 11
ORA-06512: на line 2
我已经尝试过用于 XML 的 TRIM 函数,但它对我没有帮助。
有什么想法吗?
【问题讨论】:
-
我不熟悉
Oracle,但我想你应该尝试将xml_clob重命名为clob_xml -
嗨@Andersson,谢谢,但据我所知,这只是变量的命名,我可以在很小的限制下随意命名。没有?
-
这是一个简单的建议:我刚刚检查了异常日志中的行
names starting with XML are reserved -
检查过,不工作:( thx
-
为什么要获得 CLOB?为什么不为 URL 声明一个 httpuritype 变量并使用它的 GETXML() 方法呢? [docs.oracle.com/cd/E11882_01/appdev.112/e23094/…(XMLDB 开发人员指南)中的示例
标签: oracle xpath oracle11g xml-parsing xmltable