I have two triggers on the same tables for insert and update. Now the issue is that one of the trigger is again updating the table and thus, firing another trigger again. I want to prevent the trigger call from another trigger. I tried the below command but didn't work:
ALTER DATABASE MyDatabase SET RECURSIVE_TRIGGERS OFF;
Can anybody please suggest something?