Skip to main content

This version of the product is no longer supported, and this documentation is no longer updated regularly. See the latest version of this content.Opens in a new tab

OldTable

Specifies the name of the transition table that stores the old values of the row or statement affected by the event.

Usage

To specify the name of the transition table that stores the old values, use the following syntax:

Trigger name [ Event = sqlevent, OldTable = oldtable, NewTable = newtable ]
{
   //implementation
}

Where oldtable is the name of an SQL table in this namespace.

Details

Each trigger has access to the old and new values of the row or statement affected by the event, by means of transition tables (specified by the OldTable and NewTable keywords).

Default

The default is an empty string.

See Also

FeedbackOpens in a new tab