At work we have a table to hold settings which essentially contains the following columns:
PARAMNAMEVALUE
Most of the time new settings are added but on rare occasions, settings are removed. Unfortunately this means that any scripts which might have previously updated this value will continue to do so despite the fact that the update results in "0 rows updated" and leads to unexpected behaviour.
This situation was picked up recently by a regression test failure but only after much investigation into why the data in the system was different.
So my question is: Is there a way to generate an error condition when an update results in zero rows updated?
Here are some options I have thought of, but none of them are really all that desirable:
- PL/SQL wrapper which notices the failed update and throws an exception.
- Not ideal as it doesn't stop anyone/a script from manually doing an update.
- A trigger on the table which throws an exception.
- Goes against our current policy of phasing out triggers.
- Requires updating trigger every time a setting is removed and maintaining a list of obsolete settings (if doing exclusion).
- Might have problems with mutating table (if doing inclusion by querying what settings currently exist).