Oracle Sql Developer“字符串文字太长”错误

时间:2011-03-30 13:22:40

标签: sql oracle

我想在Oracle SQL Developer中针对Oracle 10g服务器运行以下SQL:

WITH openedXml AS (
  SELECT extractvalue(column_value, '/theRow/First') FIRST,
         extractvalue(column_value, '/theRow/Last') LAST,
         to_number(extractvalue(column_value, '/theRow/Age')) Age
    FROM TABLE(XMLSequence(XMLTYPE('
  <theRange>
    <theRow><First>Bob</First><Last>Smith</Last><Age>30</Age></theRow>
    <theRow><First>Sue</First><Last>Jones</Last><Age>34</Age></theRow>
...
...
...
    <theRow><First>Tom</First><Last>Anderson</Last><Age>39</Age></theRow>
    <theRow><First>Ali</First><Last>Grady</Last><Age>45</Age></theRow>
  </theRange>
  ').extract('/theRange/theRow')))
)
SELECT *
FROM openedxml
WHERE age BETWEEN 30 AND 35;

当我尝试运行它时,我收到以下错误:

Error at Command Line:1 Column:0 Error report: SQL Error: ORA-01704: string literal too long
01704. 00000 -  "string literal too long"
*Cause:    The string literal is longer than 4000 characters.
*Action:   Use a string literal of at most 4000 characters.
           Longer values may only be entered using bind variables.

我的字符串偶尔会超过4000个字符。关于如何解决这个问题的任何想法?

5 个答案:

答案 0 :(得分:11)

你不能用“普通”SQL解决这个问题。 (但我很高兴被证明是错的)

您需要某种编程语言(例如Java,存储过程)来处理这个问题。

另一种方法是将XML数据上传到表中(可以使用SQL * Loader完成)并使用查询中的列值。

这是甲骨文的局限之一,这真的让我疯狂。 20年前,这可能有点可以接受,但现在......

答案 1 :(得分:8)

您需要使用CLOB作为XMLTYPE()的输入而不是VARCHAR。

使用dbms_lob.loadclobfromfile从文件加载xml,或者将xml拆分为32000个字符块并附加到CLOB。

DECLARE
   xmlClob CLOB;
BEGIN
/* Build Clob here */

WITH openedXml AS (
  SELECT extractvalue(column_value, '/theRow/First') FIRST,
         extractvalue(column_value, '/theRow/Last') LAST,
         to_number(extractvalue(column_value, '/theRow/Age')) Age
    FROM TABLE(XMLSequence(XMLTYPE(xmlClob).extract('/theRange/theRow')))
)
SELECT *
FROM openedxml
WHERE age BETWEEN 30 AND 35;
END;

答案 2 :(得分:2)

可能的解决方法是使用PL / SQL块:

DECLARE
  xml VARCHAR2(32000) := 
 '<theRange>
    <theRow><First>Bob</First><Last>Smith</Last><Age>30</Age></theRow>
    <theRow><First>Sue</First><Last>Jones</Last><Age>34</Age></theRow>
...
...
...
    <theRow><First>Tom</First><Last>Anderson</Last><Age>39</Age></theRow>
    <theRow><First>Ali</First><Last>Grady</Last><Age>45</Age></theRow>
  </theRange>';

  CURSOR C (p1 INTEGER, p2 INTEGER) IS
  SELECT * FROM (
    SELECT extractvalue(column_value, '/theRow/First') FIRST,
           extractvalue(column_value, '/theRow/Last') LAST,
           to_number(extractvalue(column_value, '/theRow/Age')) Age
      FROM TABLE(XMLSequence(XMLTYPE(xml).extract('/theRange/theRow'))))
  )
   WHERE age BETWEEN p1 AND p2;
BEGIN
  FOR R IN C (30,35) LOOP
    dbms_output.put_line(R.First||', '||R.Last||', '||R.Age);
  END LOOP;
END;

(完全未经测试)

编辑:

作为插页,您可以尝试:

DECLARE
      xml VARCHAR2(32000) := 
     '<theRange>
        <theRow><First>Bob</First><Last>Smith</Last><Age>30</Age></theRow>
        <theRow><First>Sue</First><Last>Jones</Last><Age>34</Age></theRow>
    ...
    ...
    ...
        <theRow><First>Tom</First><Last>Anderson</Last><Age>39</Age></theRow>
        <theRow><First>Ali</First><Last>Grady</Last><Age>45</Age></theRow>
      </theRange>';
BEGIN
  INSERT INTO temp_table(last,first,age)
  SELECT last, first, age FROM (
    SELECT extractvalue(column_value, '/theRow/First') FIRST,
           extractvalue(column_value, '/theRow/Last') LAST,
           to_number(extractvalue(column_value, '/theRow/Age')) Age
      FROM TABLE(XMLSequence(XMLTYPE(xml).extract('/theRange/theRow'))))
  )
   WHERE age BETWEEN 30 AND 35;
END;

答案 3 :(得分:2)

XML的大部分来自哪里?我假设你没有输入它。

一般来说,我会查看一个读取源代码并将其转换为CLOB的程序。这可能是perl / python /客户端上的任何脚本,或者它可能是从Web服务器中提取值的服务器端例程。

答案 4 :(得分:2)

您可以使用插入/更新来使用sql变通方法,其中每个部分(如果少于4000个字符。

1插入作为第一部分的插入是sql文字,最多4000个字符 2将附加部分作为更新将前面的部分与下一部分连接起来,下一部分最多可达4000个字符 3重复步骤2,直到更新所有大型sql文字。

实施例,

Insert into
test_large_literal (col1, col2)
values
(<key val>, <first part of large sql literal>);

update
test_large_literal
set
col2 = col2 || <second part large sql literal>
where
col1 = <key val>;
...
...
update
test_large_literal
set
col2 = col2 || <last part large sql literal>
where
col1 = <key val>;