Can I use multiple BEGIN ATOMIC/END statements in a single trigger? e.g.
BEGIN ATOMIC
statement1;
END
BEGIN ATOMIC
statement2;
END
The reason I am asking is I have two different actions that need to take place from the trigger and I want them to be independent of each other e.g. if first one fails then the second one should execute. And if yes, then does the Syntax look ok?
Any help on this would be greatly appreciated.
Thank you.