2 doc/src/sgml/ref/rollback_prepared.sgml
3 PostgreSQL documentation
6 <refentry id=
"sql-rollback-prepared">
7 <indexterm zone=
"sql-rollback-prepared">
8 <primary>ROLLBACK PREPARED
</primary>
12 <refentrytitle>ROLLBACK PREPARED
</refentrytitle>
13 <manvolnum>7</manvolnum>
14 <refmiscinfo>SQL - Language Statements
</refmiscinfo>
18 <refname>ROLLBACK PREPARED
</refname>
19 <refpurpose>cancel a transaction that was earlier prepared for two-phase commit
</refpurpose>
24 ROLLBACK PREPARED
<replaceable class=
"parameter">transaction_id
</replaceable>
29 <title>Description
</title>
32 <command>ROLLBACK PREPARED
</command> rolls back a transaction that is in
38 <title>Parameters
</title>
42 <term><replaceable class=
"parameter">transaction_id
</replaceable></term>
45 The transaction identifier of the transaction that is to be
57 To roll back a prepared transaction, you must be either the same user that
58 executed the transaction originally, or a superuser. But you do not
59 have to be in the same session that executed the transaction.
63 This command cannot be executed inside a transaction block. The prepared
64 transaction is rolled back immediately.
68 All currently available prepared transactions are listed in the
69 <link linkend=
"view-pg-prepared-xacts"><structname>pg_prepared_xacts
</structname></link>
74 <refsect1 id=
"sql-rollback-prepared-examples">
75 <title>Examples
</title>
77 Roll back the transaction identified by the transaction
78 identifier
<literal>foobar
</literal>:
81 ROLLBACK PREPARED 'foobar';
82 </programlisting></para>
87 <title>Compatibility
</title>
90 <command>ROLLBACK PREPARED
</command> is a
91 <productname>PostgreSQL
</productname> extension. It is intended for use by
92 external transaction management systems, some of which are covered by
93 standards (such as X/Open XA), but the SQL side of those systems is not
99 <title>See Also
</title>
101 <simplelist type=
"inline">
102 <member><xref linkend=
"sql-prepare-transaction"/></member>
103 <member><xref linkend=
"sql-commit-prepared"/></member>