1ABORT(7) SQL Commands ABORT(7)
2
3
4
6 ABORT - abort the current transaction
7
8
10 ABORT [ WORK | TRANSACTION ]
11
12
14 ABORT rolls back the current transaction and causes all the updates
15 made by the transaction to be discarded. This command is identical in
16 behavior to the standard SQL command ROLLBACK [rollback(7)], and is
17 present only for historical reasons.
18
20 WORK
21
22 TRANSACTION
23 Optional key words. They have no effect.
24
26 Use COMMIT [commit(7)] to successfully terminate a transaction.
27
28 Issuing ABORT when not inside a transaction does no harm, but it will
29 provoke a warning message.
30
32 To abort all changes:
33
34 ABORT;
35
36
38 This command is a PostgreSQL extension present for historical reasons.
39 ROLLBACK is the equivalent standard SQL command.
40
42 BEGIN [begin(7)], COMMIT [commit(7)], ROLLBACK [rollback(7)]
43
44
45
46SQL - Language Statements 2011-09-22 ABORT(7)