COMMIT

Name

COMMIT  --  Commits the current transaction 現在のトランザクションをコミットする

Synopsis

COMMIT [ WORK | TRANSACTION ]
  

入力

None.

なし。

出力

END

Message returned if the transaction is successfully committed.

メッセージが、トランザクションが首尾よくコミットされた時に返る。

NOTICE EndTransactionBlock and not inprogress/abort state

If there is no transaction in progress.

もしトランザクションが進行中でなければ。

説明

COMMIT commits the current transaction. All changes made by the transaction become visible to others and are guaranteed to be durable if a crash occurs.

COMMIT は現在のトランザクションをコミットします。 そのトランザクションでなされた全ての更新は他に見えるようになり、 クラッシュが起きても永続性が保証されます。

注意事項

The keywords WORK and TRANSACTION are noise and can be omitted.

キーワード WORK およびTRANSACTIOM はノイズであり、省略可能です。

Use ROLLBACK to abort a transaction.

トランザクションをアボートするには ROLLBACK を使用すること。

使用法

To make all changes permanent:

全ての更新を永続させる:

COMMIT WORK;
   

互換性

SQL92

Full compatibility.

完全互換