Insert Trigger to insert into an alternate table
I have Table T1. I want to write an insert trigger on it. I want to insert the data into an alternate table T2 if the data being inserted does not meet certain conditions. I don't want to stop the insert by raising an exception because the program performing the insert into T1 is a batch program and I want to avoid having to change the batch program. Any ideas?
Sanjeev