The array size is the number of rows fetched (or sent, in the case of inserts, updates, and deletes) by the server at a time. It can have a dramatic effect on performance.SQL> drop table t;Table dropped.SQL> create table t as select * from all_objects;Table created.SQL> select count(*) from t;COUNT (*)
----------
29120
SQL> set autotrace traceonly statistics;SQL> set arraysize 2SQL> select * from t;29120 rows selected.Statistics----------------------------------------------------------
14779 consistent gets
Note how one half...