Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - Database Management and Reference » UltraLite SQL Statement Reference

UltraLite ALTER PUBLICATION statement Next Page

UltraLite CHECKPOINT statement


Use this statement to checkpoint the database.

Syntax

CHECKPOINT

Remarks

You can use the CHECKPOINT statement as a trigger for a commit flush. A commit flush writes uncommitted transactions to storage.

Alternately, if you are using the embedded SQL API, you can use the ULCheckpoint method, or if you are writing a C++ component application, you can use the Checkpoint method on a connection object. All other APIs must use this statement.

Side effects

While this statement flushes any pending committed transactions to storage, but does not commit or flush any current transaction.

See also