How can I get the last updated row or record in an oracle database?
I want to ensure that a trigger is fired to check whether the last updated row has all uppercase entries, and if not convert them to upper case.
How can I get the last updated row or record in an oracle database?
Share
Just write a trigger to do that:
The trigger fires for each row inserted or updated, so there is no need to “find” the row.