查询XML CLOB列以获取列中的子XML

时间:2016-05-06 17:08:39

标签: sql xml oracle clob

我的表中有一个包含XML的CLOB列。我想在特定标签之后获取xml到它的结束标签,即

CLOB列中的完整XML

<ParentTag>
 <Location>ABC XYZ ....</Location>
 <Person>
  <Name>Mohsin</Name>
  <Age>23</Age>
 </Person>
</ParentTag>

我想要获取的是这样的:

<Person>
  <Name>Mohsin</Name>
  <Age>23</Age>
</Person>

我尝试使用 dbms_lob.substr dbms_lob.getlength ,但这没有用,因为子XML可能包含从不同字节开始的<Person>标记在不同的场景中。

非常感谢任何帮助。 感谢

1 个答案:

答案 0 :(得分:5)

不要尝试使用子字符串解析节点。 Oracle有广泛的XML support built-in。您可以使用XMLQuery

执行此操作
select xmlquery('/ParentTag/Person' passing xmltype(xml_clob) returning content)
  as xml_value
from your_table;

XML_VALUE                                                                      
--------------------------------------------------------------------------------
<Person><Name>Mohsin</Name><Age>23</Age></Person>

如果您的XML文档(在CLOB中)可以有多个人节点,那么您可以使用XMLTable来提取它们。

如果您希望它是与您显示的匹配的格式化字符串,而不是XML文档,则可以使用XMLSerialize包装调用:

select xmlserialize(content
  xmlquery('/ParentTag/Person' passing xmltype(xml_clob) returning content)
    as varchar2(100) indent size=2) as string_value
from your_table;

STRING_VALUE                                                                   
--------------------------------------------------------------------------------
<Person>                                                                        
  <Name>Mohsin</Name>                                                           
  <Age>23</Age>                                                                 
</Person>

跟进评论,如果您有匿名广告,可以declare that as part of the XPath

select xmlquery('declare namespace NS4 = "http://soa.comptel.com/2011/02/instantlink"; /ParentTag/NS4:Person'
  passing xmltype(prov_request) returning content) as xml_value
from your_table;

select xmlserialize(content
  xmlquery('declare namespace NS4 = "http://soa.comptel.com/2011/02/instantlink"; /ParentTag/NS4:Person'
      passing xmltype(prov_request) returning content)
    as varchar2(150) indent size=2) as string_value
from your_table;

提取的Person节点仍将具有该命名空间信息:

STRING_VALUE                                                                   
--------------------------------------------------------------------------------
<NS4:Person xmlns:NS4="http://soa.comptel.com/2011/02/instantlink">             
  <NS4:Name>Mohsin</NS4:Name>                                                   
  <NS4:Age>23</NS4:Age>                                                         
</NS4:Person>