PostgreSQL - Transactions and Concurrency
Which of the following is the correct way to set the transaction isolation level to Serializable in PostgreSQL?
BEGIN; -- What goes here? COMMIT;
Which of the following is the correct way to set the transaction isolation level to Serializable in PostgreSQL?
BEGIN; -- What goes here? COMMIT;
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE; before running queries in the transaction.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions