Files
developer-roadmap/roadmaps/sql/content/savepoint@pJtYvXUo81aZfPuRjIbMq.md
Arik Chakma 274082fd77 feat: clean roadmap content and sync scripts (#10181)
* refactor: clean to roadmap content

* refactor: move shared helpers into scripts/lib
2026-07-28 05:45:17 +06:00

674 B

SAVEPOINT

A SAVEPOINT in SQL is a point within a transaction that can be referenced later. It allows for more granular control over transactions by creating intermediate points to which you can roll back without affecting the entire transaction. This is particularly useful in complex transactions where you might want to undo part of the work without discarding all changes. SAVEPOINT enhances transaction management flexibility.

Visit the following resources to learn more: