Skip to content

Commit

Permalink
SYMMETRICDS-484 - Add some info about use of OLD_.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanes committed Aug 28, 2011
1 parent b86e551 commit f3b9a54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions symmetric/symmetric-assemble/src/docbook/configuration.xml
Expand Up @@ -460,7 +460,7 @@ values
</para>
<para>
Consider a table that needs to be routed to all nodes in the target group only when a status column changes values. The following
SQL statement will insert a column router to accomplish that.
SQL statement will insert a column router to accomplish that. Note the use of OLD_STATUS, where the OLD_ prefix gives access to the old column value.
<programlisting>
<![CDATA[insert into SYM_ROUTER
(router_id, source_node_group_id, target_node_group_id, router_type,
Expand Down Expand Up @@ -716,7 +716,7 @@ values
</para>
<para>
The following example will synchronize to all nodes if the FLAG column has changed, otherwise
no nodes will be synchronized.
no nodes will be synchronized. Note that here we make use of OLD_, which provides access to the old column value.
<programlisting>
<![CDATA[
insert into SYM_ROUTER
Expand Down

0 comments on commit f3b9a54

Please sign in to comment.