Citazione della documentazione Oracle Transaction Statements :
Inoltre, citando wikipedia Transaction post :
Nel tuo caso , puoi racchiudere tutte e tre le frasi in un'unica transazione:
COMMIT; ''This statement ends any existing transaction in the session.
SET TRANSACTION NAME 'my_crazy_update'; ''This statement begins a transaction
''and names it sal_update (optional).
UPDATE PS_EMAIL_ADDRESSES
SET PREF_EMAIL_FLAG='N'
WHERE EMPLID IN ('K0G004');
DELETE FROM PS_EMAIL_ADDRESSES
WHERE EMPLID='K0G004' AND E_ADDR_TYPE='BUSN';
INSERT INTO PS_EMAIL_ADDRESSES
VALUES('K0G004', 'BUSN', '[email protected]', 'Y');
COMMIT;
Questo è l'approccio migliore per cogliere la tua richiesta 'esegui tutte le frasi alla volta' .