oracle,xmltype / clob substr loop

时间:2018-04-19 09:56:02

标签: xml oracle plsql substr clob

我有一个大xmltype的clob。 我的目标是将这个xml剪切成更小的部分,因为我需要通过文件将大型xml(超过35000个字符)传输到另一个系统中。 到目前为止我做了什么:

    create table test_clob(
    id number(3),
    val clob);

并按代码

    declare
      cl         clob;
      xm         xmltype;
      response   xmltype;
      l_length   pls_integer;
      l_loop_cnt pls_integer;
    begin

      select ltR_clob 
      into   cl
      from   table1
      WHERE  cal1= 50470071;

      l_length   := length(cl);
      l_loop_cnt := ceil(l_length / 1000);
      dbms_output.put_line( 'len: '||l_length|| ' loop_cnt: '||l_loop_cnt);
      for rec in 1 .. l_loop_cnt
      loop

       dbms_output.put_line('update test_clob set val = val || ''' ||
                          dbms_lob.substr(cl, 1 + ((rec-1) *1000) , rec * 1000)||''';');
                          dbms_output.new_line;
      end loop;


    end;
    /

它应该看起来像文件/输出

    update ... set val = val || part1xml;
    update ... set val = val || part2xml;

etc...

问题是这个更新部分是随机顺序或部分重复f.e。

update test_clob set val = val || 'attribute>
      <attribute>
        <name>val1</name>
        <value>0</value>
      </attribute>
    </attributes>...'

update test_clob set val = val || 'attribute>
      <attribute>
        <name>val1</name>
        <value>0</value>
      </attribute>
    </attributes>...'

OR错误的顺序:

       '...<source-ids>
                  <identifier>
                    <person-id>11111111111111111</person-id>
              ';

        update test_clob set val = val || 'erson-id>0123545543334</person-id>
                    <source-system>THREER</source-system>
                  </identifier>'

有什么想法吗?我失去理智为什么会发生这种情况。或者也许有人有另一个想法如何将大量抛出大型xml放入文件中以便在另一个数据库中插入它不会有问题?

1 个答案:

答案 0 :(得分:1)

你对dbms_lob.substr()的论证是错误的。首先,你可能有错误的偏移和数量 - 由于某种原因,它与普通substr()相反。然后你将rec*1000作为金额,当你真正想要1000时 - 否则每个块都会变长,这不是你想要的,并且会继续重叠。

所以:

    dbms_output.put_line('update test_clob set val = val || ''' ||
                         dbms_lob.substr(cl, 1000, 1 + ((rec-1) * 1000)) ||''';');

根据您使用的工具,可能有内置工具来执行此操作; SQL Developer和SQLcl可以生成插入语句,将CLOB拆分为可管理的块,例如:

select /*insert*/ id, val from test_clob;

set sqlformat insert;
select id, val from test_clob;

Read more about that client functionality。其他客户可能也有类似的技巧。