notify.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:9k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. <refentry id="SQL-NOTIFY">
  2.  <refmeta>
  3.   <refentrytitle id="sql-notify-ref">
  4.    NOTIFY
  5.   </refentrytitle>
  6.   <refmiscinfo>SQL - Language Statements</refmiscinfo>
  7.  </refmeta>
  8.  <refnamediv>
  9.   <refname>
  10.    NOTIFY
  11.   </refname>
  12.   <refpurpose>
  13.    Signals all frontends and backends listening on a notify condition
  14.   </refpurpose>
  15.  </refnamediv>
  16.  <refsynopsisdiv>
  17.   <refsynopsisdivinfo>
  18.    <date>1998-10-07</date>
  19.   </refsynopsisdivinfo>
  20.   <synopsis>
  21. NOTIFY <replaceable class="PARAMETER">name</replaceable>        
  22.   </synopsis>
  23.   <refsect2 id="R2-SQL-NOTIFY-1">
  24.    <refsect2info>
  25.     <date>1998-10-07</date>
  26.    </refsect2info>
  27.    <title>
  28.     Inputs
  29.    </title>
  30.    <para>
  31.     <variablelist>
  32.      <varlistentry>
  33.       <term><replaceable class="PARAMETER">notifyname</replaceable></term>
  34.       <listitem>
  35.        <para>
  36. Notify condition to be signaled.
  37.        </para>
  38.       </listitem>
  39.      </varlistentry>
  40.     </variablelist>
  41.    </para>
  42.   </refsect2>
  43.   <refsect2 id="R2-SQL-NOTIFY-2">
  44.    <refsect2info>
  45.     <date>1998-10-07</date>
  46.    </refsect2info>
  47.    <title>
  48.     Outputs
  49.    </title>
  50.    <para>
  51.     <variablelist>
  52.      <varlistentry>
  53.       <term><computeroutput>
  54. NOTIFY
  55.        </computeroutput></term>
  56.       <listitem>
  57.        <para>
  58. Acknowledgement that notify command has executed.
  59.        </para>
  60.       </listitem>
  61.      </varlistentry>
  62.      <varlistentry>
  63.       <term><replaceable>Notify events</replaceable></term>
  64.       <listitem>
  65.        <para>
  66. Events are delivered to listening frontends; whether and how each frontend
  67. application reacts depends on its programming.
  68.        </para>
  69.       </listitem>
  70.      </varlistentry>
  71.     </variablelist>
  72.    </para>
  73.   </refsect2>
  74.  </refsynopsisdiv>
  75.  <refsect1 id="R1-SQL-NOTIFY-1">
  76.   <refsect1info>
  77.    <date>1998-10-07</date>
  78.   </refsect1info>
  79.   <title>
  80.    Description
  81.   </title>
  82.   <para>
  83.    The <command>NOTIFY</command> command sends a notify event to each
  84.    frontend application that has previously executed
  85.    <command>LISTEN <replaceable class="parameter">notifyname</replaceable></command>
  86.    for the specified notify condition in the current database.
  87.   </para>
  88.   <para>
  89.    The information passed to the frontend for a notify event includes the notify
  90.    condition name and the notifying backend process's PID.  It is up to the
  91.    database designer to define the condition names that will be used in a given
  92.    database and what each one means.
  93.   </para>
  94.   <para>
  95.    Commonly, the notify condition name is the same as the name of some table in
  96.    the database, and the notify event essentially means "I changed this table,
  97.    take a look at it to see what's new".  But no such association is enforced by
  98.    the <command>NOTIFY</command> and <command>LISTEN</command> commands.  For
  99.    example, a database designer could use several different condition names
  100.    to signal different sorts of changes to a single table.
  101.   </para>
  102.   <para>
  103.    <command>NOTIFY</command> provides a simple form of signal or
  104.    IPC (interprocess communication) mechanism for a collection of processes
  105.    accessing the same <productname>Postgres</productname> database.
  106.    Higher-level mechanisms can be built by using tables in the database to
  107.    pass additional data (beyond a mere condition name) from notifier to
  108.    listener(s).
  109.   </para>
  110.   <para>
  111.    When <command>NOTIFY</command> is used to signal the occurrence of changes
  112.    to a particular table, a useful programming technique is to put the
  113.    <command>NOTIFY</command> in a rule that is triggered by table updates.
  114.    In this way, notification happens automatically when the table is changed,
  115.    and the application programmer can't accidentally forget to do it.
  116.   </para>
  117.   <para>
  118.    <command>NOTIFY</command> interacts with SQL transactions in some important
  119.    ways.  Firstly, if a <command>NOTIFY</command> is executed inside a
  120.    transaction, the notify events are not delivered until and unless the
  121.    transaction is committed.  This is appropriate, since if the transaction
  122.    is aborted we would like all the commands within it to have had no
  123.    effect, including <command>NOTIFY</command>.  But it can be disconcerting if one
  124.    is expecting the notify events to be delivered immediately.  Secondly, if
  125.    a listening backend receives a notify signal while it is within a transaction,
  126.    the notify event will not be delivered to its connected frontend until just
  127.    after the transaction is completed (either committed or aborted).  Again, the
  128.    reasoning is that if a notify were delivered within a transaction that was
  129.    later aborted, one would want the notification to be undone somehow --- but
  130.    the backend cannot "take back" a notify once it has sent it to the frontend.
  131.    So notify events are only delivered between transactions.  The upshot of this
  132.    is that applications using <command>NOTIFY</command> for real-time signaling
  133.    should try to keep their transactions short.
  134.   </para>
  135.   <para>
  136.    <command>NOTIFY</command> behaves like Unix signals in one important
  137.    respect: if the same condition name is signaled multiple times in quick
  138.    succession, recipients may get only one notify event for several executions
  139.    of <command>NOTIFY</command>.  So it is a bad idea to depend on the number
  140.    of notifies received.  Instead, use <command>NOTIFY</command> to wake up
  141.    applications that need to pay attention to something, and use a database
  142.    object (such as a sequence) to keep track of what happened or how many times
  143.    it happened.
  144.   </para>
  145.   <para>
  146.    It is common for a frontend that sends <command>NOTIFY</command> to be
  147.    listening on the same notify name itself.  In that case it will get back a
  148.    notify event, just like all the other listening frontends.  Depending on the
  149.    application logic, this could result in useless work --- for example,
  150.    re-reading a database table to find the same updates that that frontend just
  151.    wrote out.  In <productname>Postgres</productname> 6.4 and later, it is
  152.    possible to avoid such extra work by noticing whether the notifying backend
  153.    process's PID (supplied in the notify event message) is the same as one's own
  154.    backend's PID (available from libpq).  When they are the same, the notify
  155.    event is one's own work bouncing back, and can be ignored.  (Despite what was
  156.    said in the preceding paragraph, this is a safe technique.
  157.    <productname>Postgres</productname> keeps self-notifies separate from notifies
  158.    arriving from other backends, so you cannot miss an outside notify by ignoring
  159.    your own notifies.)
  160.   </para>
  161.   <refsect2 id="R2-SQL-NOTIFY-3">
  162.    <refsect2info>
  163.     <date>1998-10-07</date>
  164.    </refsect2info>
  165.    <title>
  166.     Notes
  167.    </title>
  168.    <para>
  169.     <replaceable class="PARAMETER">name</replaceable>
  170.     can be any string valid as a name;
  171.     it need not correspond to the name of any actual table.  If
  172.     <replaceable class="PARAMETER">name</replaceable>
  173.     is enclosed in double-quotes, it need not even be a syntactically
  174.     valid name, but can be any string up to 31 characters long.
  175.    </para>
  176.    <para>
  177.     In some previous releases of
  178.     <productname>Postgres</productname>,
  179.     <replaceable class="PARAMETER">name</replaceable>
  180.     had to be enclosed in double-quotes when it did not correspond to any existing
  181.     table name, even if syntactically valid as a name.  That is no longer required.
  182.    </para>
  183.    <para>
  184.     In <productname>Postgres</productname> releases prior to 6.4, the backend
  185.     PID delivered in a notify message was always the PID of the frontend's own
  186.     backend.  So it was not possible to distinguish one's own notifies from other
  187.     clients' notifies in those earlier releases.
  188.    </para>
  189.   </refsect2>
  190.  </refsect1>
  191.  <refsect1 id="R1-SQL-NOTIFY-2">
  192.   <title>
  193.    Usage
  194.   </title>
  195.   <para>
  196.    Configure and execute a listen/notify sequence from
  197.    <application>psql</application>:
  198.    <programlisting>
  199. LISTEN virtual;
  200. NOTIFY virtual;
  201. ASYNC NOTIFY of 'virtual' from backend pid '11239' received
  202.    </programlisting>
  203.   </para>
  204.  </refsect1>
  205.  <refsect1 id="R1-SQL-NOTIFY-3">
  206.   <title>
  207.    Compatibility
  208.   </title>
  209.   <para>
  210.   </para>
  211.   <refsect2 id="R2-SQL-NOTIFY-4">
  212.    <refsect2info>
  213.     <date>1998-09-24</date>
  214.    </refsect2info>
  215.    <title>
  216.     SQL92
  217.    </title>
  218.    <para>
  219.     There is no <command>NOTIFY</command> statement in
  220.     <acronym>SQL92</acronym>.
  221.    </para>
  222.   </refsect2>
  223.  </refsect1>
  224. </refentry>
  225. <!-- Keep this comment at the end of the file
  226. Local variables:
  227. mode: sgml
  228. sgml-omittag:nil
  229. sgml-shorttag:t
  230. sgml-minimize-attributes:nil
  231. sgml-always-quote-attributes:t
  232. sgml-indent-step:1
  233. sgml-indent-data:t
  234. sgml-parent-document:nil
  235. sgml-default-dtd-file:"../reference.ced"
  236. sgml-exposed-tags:nil
  237. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  238. sgml-local-ecat-files:nil
  239. End:
  240. -->