spool spools/dtrm_arraysize.sql ----------- set arraysize 15 term off; truncate table t_params; select f_deterministic(n) fd from xmltable('1 to 75,1 to 75' columns n int path '.'); set term on; select count(count(*)) cnt from t_params group by p having count(*)>1; ----------- set arraysize 75 term off; truncate table t_params; select f_deterministic(n) fd from xmltable('1 to 75,1 to 75' columns n int path '.'); set term on; select count(count(*)) cnt from t_params group by p having count(*)>1; ----------- set arraysize 100 term off; truncate table t_params; select f_deterministic(n) fd from xmltable('1 to 75,1 to 75' columns n int path '.'); set term on; select count(count(*)) cnt from t_params group by p having count(*)>1; ----------- set arraysize 150 term off; truncate table t_params; select f_deterministic(n) fd from xmltable('1 to 75,1 to 75' columns n int path '.'); set term on; select count(count(*)) cnt from t_params group by p having count(*)>1; spool off