ORA-04082: NEW or OLD references not allowed in table level triggers
DML triggers are either defined as table level or as row level. A table level trigger fires once for each operation on the table, so if you update 30 rows then that is one operation as far as a table trigger is concerned. Table triggers do not have insight into which rows are modified, but … Read more