I have a table (TableA). In this table, I create a trigger that inserts a row into another table (TableB) to insert, update, and delete actions performed in TableA. My intention is to track the modification on TableA.
I have the only trigger to do this. (create a trigger name for the trigger before inserting or updating or deleting it on TableA ... - View).
Now I need the actual operation performed in Table A. When the trigger inserts a row into TableB, I want the actual operation performed on TableA to also be inserted into the column.
Is there any way to capture what operation is performed in TableA with one trigger, or do I need to create a separate trigger for each operation of the DML operator?
TIA.
Navin source
share