- Mastering PostgreSQL 9.6
- Hans Jurgen Schonig
- 279字
- 2021-07-09 19:57:11
Making use of savepoints
In professional applications, it can be pretty hard to write reasonably long transactions without ever encountering a single error. To solve the problem, users can utilize something called SAVEPOINT. As the name indicates, it is a safe place inside a transaction that the application can return to in the event things go terribly wrong. Here is an example:
test=# BEGIN;
BEGIN
test=# SELECT 1;
?column?
----------
1
(1 row)
test=# SAVEPOINT a;
SAVEPOINT
test=# SELECT 2 / 0;
ERROR: division by zero
test=# ROLLBACK TO SAVEPOINT a;
ROLLBACK
test=# SELECT 3;
?column?
----------
3
(1 row)
test=# COMMIT;
COMMIT
After the first SELECT clause, I decided to create a SAVEPOINT to make sure that the application can always return to this point inside the transaction. As you can see, a SAVEPOINT has a name, which is referred to later.
After returning to a, the transaction can proceed normally. The code has jumped back before the error, so everything is fine.
The number of savepoints inside a transaction is practically unlimited. We have seen customers with over 250,000 savepoints in a single operation. PostgreSQL can easily handle that.
If you want to remove a savepoint from inside a transaction, there is RELEASE SAVEPOINT:
test=# h RELEASE SAVEPOINT
Command: RELEASE SAVEPOINT
Description: destroy a previously defined savepoint
Syntax:
RELEASE [ SAVEPOINT ] savepoint_name
Many people ask, What will happen if you try to reach a savepoint after a transaction has ended? The answer is that the life of a savepoint ends as soon as the transaction ends. In other words, there is no way to return to a certain point in time after the transactions have been completed.
- Visualforce Development Cookbook(Second Edition)
- 工業機器人技術及應用
- 圖形圖像處理(Photoshop)
- 數控銑削(加工中心)編程與加工
- PyTorch深度學習實戰
- iClone 4.31 3D Animation Beginner's Guide
- Supervised Machine Learning with Python
- 運動控制系統應用與實踐
- 空間站多臂機器人運動控制研究
- 網絡管理工具實用詳解
- R Data Analysis Projects
- 從零開始學Java Web開發
- Cortex-M3嵌入式處理器原理與應用
- Oracle 11g Anti-hacker's Cookbook
- Instant Slic3r