gpt4 book ai didi

sql - Oracle Sql Developer "string literal too long"错误

转载 作者:行者123 更新时间:2023-12-04 09:21:18 26 4
gpt4 key购买 nike

我想在 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 个字符。关于如何解决这个问题的任何想法?

最佳答案

使用“普通”SQL 无法解决此问题。
(但我很高兴被证明是错误的)

您将需要某种编程语言(例如 Java、存储过程)来处理此问题。

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

这是 Oracle 真正让我抓狂的限制之一。
20 年前,这可能在某种程度上是可以接受的,但现在......

关于sql - Oracle Sql Developer "string literal too long"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5486889/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com