What does COMMIT do?
Hi,
here is the answer,
COMMIT makes permanent the changes made by DML statements in the transaction. The changes made by the DML statements of a transaction become visible to other user sessions transactions that start only after transaction is committed.
Thanks.