View Single Post

   
  #2 (permalink)  
Old 02-28-2008, 07:14 PM
John Bell
 
Posts: n/a
Default Re: Multiple triggers

Hi

If you update table B the trigger will update table A and the trigger on
table A will be activated. You will have to be careful that the actions you
perform within the do what you expect. There are 32 levels of recursion.

Check out Using Nested Triggers in Books Online.

John
"Yariv" <yariva@mll.co.il> wrote in message
news:b4e534ce.0310080112.14d7aa18@posting.google.c om...
> When a trigger on one table updates another table, does it activate
> the update trigger on the updated table?
>
> For ex:
>
> 1. Table A has a trigger for update
> 2. Table B has a trigger for update that updates table A
>
> Will the trigger no table A run when table B trigger updates table A?
>
> Thanks



Reply With Quote