triggers

Post Reply
MiniMe
Posts: 210
Joined: Thu Mar 15, 2001 4:30 pm

triggers

Post by MiniMe »

I have a table with a trigger on it for when a record is deleted a portion of that record goes to another table. Is it possible to background the triggers action so that the foreground application does not have to wait on it.

M.
User avatar
John
Site Admin
Posts: 2622
Joined: Mon Apr 24, 2000 3:18 pm
Location: Cleveland, OH
Contact:

triggers

Post by John »

Since the data is deleted once the trigger has completed, and in some instances you can modify the data that will be acted upon, Texis does need to wait for the action to complete. If you are doing something complex then you could do a quick copy of the data, launch a background process, and return.
John Turnbull
Thunderstone Software
MiniMe
Posts: 210
Joined: Thu Mar 15, 2001 4:30 pm

triggers

Post by MiniMe »

Thanks John
Post Reply