pragma autonomous_transaction in a trigger
I have written a trigger on one table which deletes data from other table upon a condition. The trigger has pragma autonomous_transaction, and trigger works as intended. However, I do wonder if there can be any problems in future, say if data is inserted by multiple users/sources at the same time etc...Any suggestions? Source table t1: -------------------------------------------- | user_id | auth_name1 | auth_name2 | data | -------------------------------------------- | 1 | Name1 | Name2 | d1 | | 2 | Name3 | Name4 | d2 | | 3 | Name5 | Name1 | d3 | --------------------------------------------