1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>COMMIT PREPARED</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="sql-commands.html" title="SQL Commands">
<link rel="prev" href="sql-commit.html" title="COMMIT">
<link rel="next" href="sql-copy.html" title="COPY">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en">
<a name="sql-commit-prepared"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>COMMIT PREPARED — commit a transaction that was earlier prepared for two-phase commit</p>
</div>
<a name="id750214"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">COMMIT PREPARED <em class="replaceable"><code>transaction_id</code></em></pre>
</div>
<div class="refsect1" lang="en">
<a name="id750238"></a><h2>Description</h2>
<p> <code class="command">COMMIT PREPARED</code> commits a transaction that is in
prepared state.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id750252"></a><h2>Parameters</h2>
<div class="variablelist"><dl>
<dt><span class="term"><em class="replaceable"><code>transaction_id</code></em></span></dt>
<dd><p> The transaction identifier of the transaction that is to be
committed.
</p></dd>
</dl></div>
</div>
<div class="refsect1" lang="en">
<a name="id750271"></a><h2>Notes</h2>
<p> To commit a prepared transaction, you must be either the same user that
executed the transaction originally, or a superuser. But you do not
have to be in the same session that executed the transaction.
</p>
<p> This command cannot be executed inside a transaction block. The prepared
transaction is committed immediately.
</p>
<p> All currently available prepared transactions are listed in the
<code class="structname">pg_prepared_xacts</code> system view.
</p>
</div>
<div class="refsect1" lang="en">
<a name="sql-commit-prepared-examples"></a><h2>Examples</h2>
<p> Commit the transaction identified by the transaction
identifier <code class="literal">foobar</code>:
</p>
<pre class="programlisting">COMMIT PREPARED 'foobar';</pre>
<p>
</p>
</div>
<div class="refsect1" lang="en">
<a name="id750326"></a><h2>See Also</h2>
<span class="simplelist"><a href="sql-prepare-transaction.html">PREPARE TRANSACTION</a>, <a href="sql-rollback-prepared.html">ROLLBACK PREPARED</a></span>
</div>
</div></body>
</html>
|