Hi Friends,
Can anybody please, let me know if there is a way to find out the exact time, when a table was updated.I mean when a column was updated. Please, help.
Thanks,
|
|
|
|
|
|
|
You could add a trigger on update of the relevant column. This will only be triggered if the relevant column actually was changed. Example below is for Oracle.
If you need to find out when, for any row in the table, the column was updated, you could issue the following SQL:
|
||
|
|
|
|
Best practice is Update Trigger on that table that will call a generic procedure where you can pass parameters like description field name and primary key of updated record as well the timestamp. |
||
|
|
|
|
I like to keep a LastUpdatedTimeStamp column in my tables where I need that kind of tracking. If you're asking about tracing a change that has already been made, you might be able to analyze transaction logs. I don't know how one would go about doing that though. |
||||
|
|
|
add a trigger, when the inserted (changed) data matches your condition do your notification (insert into log table, etc.) |
||
|
|