COMMIT (SQL)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by GünniX (talk | contribs) at 17:33, 26 July 2018 (References). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

A COMMIT statement in SQL ends a transaction within a relational database management system (RDBMS) and makes all changes visible to other users.[1][2] The general format is to issue a BEGIN WORK statement, one or more SQL statements, and then the COMMIT statement. A COMMIT statement will also release any existing savepoints that may be in use. This means that once a COMMIT statement is issued, you can not rollback the transaction.[1]

In terms of transactions, the opposite of commit is to discard the tentative changes of a transaction, a rollback.

The transaction, commit and rollback concepts are key to the ACID property of databases.

See also

References

  1. ^ a b BYHAM. "COMMIT TRANSACTION (Transact-SQL)". docs.microsoft.com. Retrieved 2017-09-29.
  2. ^ "Database SQL Reference". docs.oracle.com. Retrieved 2017-09-29.