Amazon Redshift will no longer support the creation of new Python UDFs starting November 1, 2025.
If you would like to use Python UDFs, create the UDFs prior to that date.
Existing Python UDFs will continue to function as normal. For more information, see the
blog post
COMMIT
Commits the current transaction to the database. This command makes the database updates from the transaction permanent.
Syntax
COMMIT [ WORK | TRANSACTION ]
Parameters
- WORK
-
Optional keyword. This keyword isn't supported within a stored procedure.
- TRANSACTION
-
Optional keyword. WORK and TRANSACTION are synonyms. Neither is supported within a stored procedure.
For information about using COMMIT within a stored procedure, see Managing transactions.
Examples
Each of the following examples commits the current transaction to the database:
commit;
commit work;
commit transaction;