I have a confusion on maximum numbers of different type of triggers we can have on a single table in oracle db.
Do you encounter any problems due to any limit?
You can have triggers of these timing points:
In case you have more than one trigger at a timing point the order of execution is undetermined, thus it should be very uncommon to have many triggers for the same timing point.
Oracle documentation says:
You cannot control the order in which multiple row triggers fire.
If two or more triggers are defined with the same timing point, and the order in which they fire is important, then you can control the firing order using the FOLLOWS clause.