gpt4 book ai didi

sql - 单个 Oracle 语句中 OR 子句的最大数量是多少?

转载 作者:行者123 更新时间:2023-12-04 04:35:43 25 4
gpt4 key购买 nike

假设我必须针对单个更新语句检查 100,000 个 uid - 我的代码目前会将其分解为 1000-uid 块:

[...] WHERE UID IN (..., '998', '999', '1000') 
OR UID IN ('1001', '1002', ...)
OR (..., etc., ...)

您可以拥有最多数量的 OR 子句吗?即,在我上面的示例中,它将生成 100 个 OR 子句,每个子句包含 1000 个 IN 子句。

最佳答案

22.

嗯,不完全是。这就是 1000 项 IN 列表的 OR 子句将在我的系统上运行的数量,但这个数字可能因人而异。有
database limit这恰好涵盖了这种情况。它可能属于注释:

The limit on how long a SQL statement can be depends on many factors, including database configuration, disk space, and memory



当我尝试 23 时,在 SQL*Plus 中出现此错误:
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Process ID: 2452
Session ID: 135 Serial number: 165

这不是真正的错误,这只是意味着服务器崩溃并且 SQL*Plus 失去了连接。奇怪的是,当我查看警报日志时,没有错误。有跟踪文件,但仍然没有 ORA- 错误消息。我所看到的只有数百行这样的:
*** 2013-11-04 21:59:48.667
minact-scn master-status: grec-scn:0x0000.00821c54 gmin-scn:0x0000.0081d656 gcalc-scn:0x0000.00821c54
minact-scn master-status: grec-scn:0x0000.00823b45 gmin-scn:0x0000.0081d656 gcalc-scn:0x0000.00823b46

这里的教训是避免过大的 SQL 语句。您必须以另一种方式执行此操作,例如将数据加载到表中。并且不要试图构建足够小的东西。它可能今天工作,但明天在不同的环境中失败。
--Find the maximum number of IN conditions with 1000 items.
--Change the first number until it throws an error.
--This code uses dynamic SQL, but I found that static SQL has the same limit.
declare
c_number_of_ors number := 22;

v_in_sql varchar2(4000);
v_sql clob;
v_count number;
begin
--Comma-separate list of 1000 numbers.
select listagg(level, ',') within group (order by 1)
into v_in_sql
from dual connect by level <= 1000;

--Start the statement.
v_sql := 'select count(*) from dual ';
v_sql := v_sql || 'where 1 in ('||v_in_sql||')';

--Append more ORs to it.
for i in 1 .. c_number_of_ors loop
v_sql := v_sql || ' or '||to_char(i)||' in ('||v_in_sql||')';
end loop;

--Execute it.
execute immediate v_sql into v_count;
end;
/

关于sql - 单个 Oracle 语句中 OR 子句的最大数量是多少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19777853/

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