我遇到了一个大的收sql我希望你能提供帮助。# d) `; n) h/ z% p! [; h2 @/ Z
使用以下代码:: k$ }& c' T5 ]9 h: ~' \3 z
declare cursor c1 is select customer,product from products; type type_cust is table of products.customer%type; type type_prod is table of products.product%type; v_array_cust type_cust; v_array_prod type_prod;begin open c1; loop fetch c1 into v_array_cust,v_array_prod limit exit when c1%notfound; for i in 1..v_array_cust.count loop --Do some processing here. end loop; end loop;end;/游标c1返回53166行。5 P7 D& a5 t& C3 P+ i
然而,代码处理53000行,然后结束。在检索最后166条记录时,似乎会出现故障。 ' X, O' F: u3 ^( \+ C) W$ \) E! }$ r如果发现记录少于1000条,提取物是否会返回%notfound?我应该把出口移到循环的末尾吗?(我会尝试这种方法,但它需要3个小时才能到达故障点。% ~1 o0 f- \3 {6 {' {) `
提前致谢。 * X; s7 `/ v* i9 E 1 e5 g4 G5 q/ R% q Z解决方案: