But this practice not very much acceptable for high speed Transition. this point of view oracle introduce Asynchronous commit in 10g release 2.
Now Asynchronous COMMIT:
Oracle has introduce two options:
a. One is to return immediately after the COMMIT is issued, rather than waiting for the log activity to complete.
b. Another option batches multiple transactions together in memory before writing to the disk.
The full syntax of the new WRITE clause is:
COMMIT [WRITE [IMMEDIATE | BATCH] [WAIT | NOWAIT] ]
By default, if no WRITE clause is specified, a normal COMMIT is equivalent to and following syntax is default.
COMMIT WRITE IMMEDIATE WAIT;
Oracle’s log writer process (LGWR) is allowed to batch multiple transactions together before writing, specify:
COMMIT WRITE BATCH NOWAIT;
ALTER SYSTEM SET commit_write = BATCH, NOWAIT;