I\'d like to disable a specific trigger on a table prior to inserting data into it, but without affecting other users that may be changing data in that same tab
I dont think that disabling trigger is possible for a particular session is possible in oracle or other rdbms .
My solution is that ,if you know the CURRENT_USER or the session_id from which you login ,than you can put a condition in the trigger .
IF SYS_CONTEXT ('USERENV', 'CURRENT_USER') <> '' THEN
--do the operation
END IF;
This condition you need to put in your trigger