Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.risingwave.com/llms.txt

Use this file to discover all available pages before exploring further.

The START TRANSACTION command starts the read-write transaction mode, which is not supported yet in RisingWave. For compatibility reasons, this command will still succeed but no transaction is actually started. That is why you need to specify the READ ONLY option to start a transaction in read-only mode. The START TRANSACTION command is the same as the BEGIN command. You can end a transaction by using the COMMIT command.

Syntax

START TRANSACTION;

Example

START TRANSACTION READ ONLY;
-------RESULT
START_TRANSACTION

Transactions

BEGIN

COMMIT