Oracle 10g:从XML中提取数据(select)(CLOB类型)

时间:2011-02-03 09:37:55

标签: xml oracle oracle10g ora-00932

我是甲骨文的新手,而且我 - 也许是微不足道的 - 选择中的一个问题。 (我正在使用Oracle 10g Express Edition。)

我有一个带字段CLOB的数据库:mytab.xml 此列具有如下XML:

<?xml version="1.0" encoding="iso-8859-1"?>
<info>
<id> 954 </id>
<idboss> 954 </idboss>
<name> Fausto </name>
<sorname> Anonimo </sorname>
<phone> 040000000 </phone>
<fax> 040000001 </fax>
</info>

我正在尝试进行'简单'选择,例如,获取'fax'标签的值。但我有点问题,我无法理解我的错误。例如:

select extract(xml, '//fax').getStringVal() from mytab;
ORA-00932: inconsistent datatypes: expected - got

select extract(xmltype(xml), '//fax').getStringVal() from mytab;
ORA-06502: PL/SQL: numeric or value error
ORA-06512: at "SYS.XMLTYPE", line 254

我也试过'extractvalue',但我遇到了同样的问题。 我做错了什么?

7 个答案:

答案 0 :(得分:28)

请改为尝试:

select xmltype(t.xml).extract('//fax/text()').getStringVal() from mytab t

答案 1 :(得分:3)

尝试使用xmltype.createxml(xml)

如同,

select extract(xmltype.createxml(xml), '//fax').getStringVal() from mytab;

它对我有用。

如果你想进一步改进或操纵。

尝试这样的事情。

Select *
from xmltable(xmlnamespaces('some-name-space' as "ns", 
                                  'another-name-space' as "ns1",
                           ), 
                    '/ns/ns1/foo/bar'
                    passing xmltype.createxml(xml) 
                    columns id varchar2(10) path '//ns//ns1/id',
                            idboss varchar2(500) path '//ns0//ns1/idboss',
                            etc....

                    ) nice_xml_table

希望它有所帮助。

答案 2 :(得分:0)

此查询在我的案例中完美运行

select xmltype(t.axi_content).extract('//Lexis-NexisFlag/text()').getStringVal() from ax_bib_entity t

答案 3 :(得分:0)

您可以通过以下查询实现

  1. select extract(xmltype(xml), '//fax/text()').getStringVal() from mytab;

  2. select extractvalue(xmltype(xml), '//fax') from mytab;

答案 4 :(得分:0)

您可以尝试从CLOB XML创建DBMS_XMLPARSER.parser对象,并从中获取DBMS_XMLDOM.DOMDocument对象。然后使用DBMS_XMLDOM包方法获取任何节点的值。

   xml_            CLOB := 'X';
   p               DBMS_XMLPARSER.parser;
   doc_            DBMS_XMLDOM.DOMDocument;

      -- Convert the CLOB into a XML-document
      P := DBMS_XMLPARSER.newparser();
      -- Parse the clob and get the XML-document
      DBMS_XMLPARSER.parseclob(p, xml_);
      doc_ := DBMS_XMLPARSER.getDocument(p);

然后使用以下方法提取节点值

DBMS_XMLDOM.getElementsByTagName(doc_,'NodeName'); DBMS_XMLDOM.GetNodeValue(node_obj _);

详细了解DBMS_XMLDOM方法here

答案 5 :(得分:0)

如果:

<?xml version="1.0" encoding="iso-8859-1"?>
<info xmlns="http://namespaces.default" xmlns:ns2="http://namespaces.ns2" >
    <id> 954 </id>
    <idboss> 954 </idboss>
    <name> Fausto </name>
    <sorname> Anonimo </sorname>
    <phone> 040000000 </phone>
    <fax> 040000001 </fax>
</info>

查询:

Select *
from xmltable(xmlnamespaces(default 'http://namespaces.default'
                              'http://namespaces.ns2' as "ns",
                       ), 
                '/info'
                passing xmltype.createxml(xml) 
                columns id varchar2(10) path '/id',
                        idboss varchar2(500) path '/idboss',
                        etc....

                ) nice_xml_table

答案 6 :(得分:0)

如果XML存储在数据库表的CLOB字段中。例如,此XML:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Awmds>
    <General_segment>
        <General_segment_id>
        <Customs_office_code>000</Customs_office_code>
    </General_segment_id>
</General_segment>
</Awmds>

这是提取查询:

SELECT EXTRACTVALUE (
    xmltype (T.CLOB_COLUMN_NAME),
    '/Awmds/General_segment/General_segment_id/Customs_office_code')
    AS Customs_office_code
FROM TABLE_NAME t;