Answers for "sql server savepoint"

SQL
3

savepoint in sql

• SAVEPOINT name —> marks a save point
• COMMIT —> making all pending changes permanent;
• ROLLBACK —> discharges all pending changes to prev commit
• ROLLBACK TO name —> rolls back changes to savepoint
Posted by: Guest on January-28-2021
0

savepoint in sql

/* creates a temporary memory to store values which you want 
to conditionally cancel */
Posted by: Guest on January-03-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language