If you increase the INITRANS parameter in tables and indexes with very high I/O, it will make less I/O because multiple operations can be performed.
You can change this parameter as follows.
To query the current value;
1 2 3 4 5 |
SQL> SELECT ini_trans, max_trans from dba_tables WHERE table_name = 'TEST' ; INI_TRANS MAX_TRANS ---------- ---------- 5 255 |
To change the current value;
1 |
SQL> ALTER TABLE TEST INITRANS 5 MAXTRANS 255 ; |