We all know that triggers can be created in the following case :
Create trigger on Table A at row level to insert a row into it each time a row is inserted in Table B.
Can we also create triggers for :
Need to insert a row into Table A each time a row is created in underlying table(s) of View B. And say that the tables that make up the view B are dynamically created each month with the name constantly changing and thus cannot be accessed in the trigger.
Create trigger on Table A at row level to insert a row into it each time a row is inserted in Table B.
Can we also create triggers for :
Need to insert a row into Table A each time a row is created in underlying table(s) of View B. And say that the tables that make up the view B are dynamically created each month with the name constantly changing and thus cannot be accessed in the trigger.