Let me try to simplify the issue...
I have a table with two columns (A and B)
When A is updated, B will have to be updated (using A's new value to perform some calculation) When B is updated, A will have to be updated (using B's new value to perform some calculation)
I'm trying to write a trigger to do perform this update, but I'm afraid that the condition will fall into a infinite loop, as every time A updates, it will try to update B; as b in being updated, it will try to update A and so on...
Any suggestion?
Thanks!