9
Reply

What does COMMIT do?

Sapna Malik

Sapna Malik

Jun 03, 2011
5.1k
0

    Commit is the transactional command used to save changes invoked by a transaction to the database it saves all transactions to the database since the last Commit or RollBack Command.

    RAHUL SHUKLA
    July 31, 2015
    1

    commit finds all breakpoint which marked for either delete or update operation , than it will complete updation on defined breakpont

    Manav Pandya
    January 16, 2018
    0

    Commit permanently save the transaction after commit we can rollback transaction.......

    Use the COMMIT statement to end your current transaction and make permanent all changes performed in the transaction. A transaction is a sequence of SQL statements that Oracle Database treats as a single unit. This statement also erases all savepoints in the transaction and releases transaction locks.

    Vinod Verma
    May 30, 2013
    0

    hi how are u all of u...?

    Rajendra Singh
    September 25, 2012
    0

    Marks the end of a successful implicit or explicit transaction.

    Maajid Bashir
    July 10, 2012
    0

    after changes are made and user commits it,it cant be undone or in SQL rollbacked.

    Abhinav Sood
    July 10, 2012
    0

    Commit is a TCL  command which is  used to make  database 
    transaction permanent.
    once the data is commited it can't be rollbacked.

    satan singh
    November 07, 2011
    0

    COMMIT makes permanent the changes resulting from all SQL statements in the transaction. The changes made by the SQL statements of a transaction become visible to other user sessions transactions that start only after transaction is committed.

    Sapna Malik
    June 03, 2011
    0