Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Simple Select Return Record
Hi Vlad
>I think it'll fetch at least batch_size(arraysize) rows.
It depends on your environment, e.g. with JDBC, per default, yes.
>Could you please kindly provide your form of the query needed. Please,
>don't say it's bad without an alternative.
I didn't say it's bad. In fact it's a nice trick. But fetching single rows instead of joining dual is still better (even in 10g with fast dual...).
An example:
SQL> DECLARE
2 l_found PLS_INTEGER;
3 BEGIN
4 FOR i IN 1..100000 LOOP
5 SELECT count(*) 6 INTO l_found 7 FROM dual 8 WHERE EXISTS (SELECT null FROM employees WHERE employee_id = 100);9 END LOOP;
SQL> DECLARE
2 l_found PLS_INTEGER;
3 BEGIN
4 FOR i IN 1..100000 LOOP
5 l_found := 0; 6 FOR i IN (SELECT null FROM employees WHERE employee_id = 10) LOOP 7 l_found := 1; 8 EXIT; 9 END LOOP;
HTH Chris
-- http://www.freelists.org/webpage/oracle-lReceived on Thu Jun 09 2005 - 10:12:13 CDT
![]() |
![]() |