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

NewTable

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

Usage

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

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

Where newtable 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 value for the NewTable keyword is null.

See Also

FeedbackOpens in a new tab