官术网_书友最值得收藏!

Making use of SAVEPOINT

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=# SELECT 2; ERROR: current transaction is aborted, commands ignored until end of transaction block
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 SAVEPOINT to make sure that the application can always return to this point inside the transaction. As you can see, SAVEPOINT has a name, which is referred to later.

 After returning the savepoint called 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 this.

If you want to remove a SAVEPOINT from inside a transaction, there is a 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, 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.

主站蜘蛛池模板: 陇川县| 拉孜县| 上饶县| 孝昌县| 舟山市| 陇西县| 永川市| 当阳市| 峨边| 元谋县| 秦皇岛市| 秦安县| 五华县| 丹凤县| 瑞安市| 株洲市| 萨迦县| 卢龙县| 越西县| 溧阳市| 兰溪市| 鹤壁市| 鲁山县| 肥城市| 云南省| 达日县| 金堂县| 朔州市| 揭东县| 田东县| 岐山县| 沁水县| 临城县| 远安县| 淮南市| 家居| 务川| 桂东县| 当涂县| 嘉义市| 宣威市|