Is there a way to create a timestamp column in Oracle that automatically stores a timestamp of when the record has changed ?
|
|
Tables I've modelled always include:
...columns. Why implement a trigger when you can set the value at the same time as the INSERT/UPDATE?
|
||||||||||||||
|
|
|
Another way to deal with this is by turning on fine-grained audit. The individual rows won't have a timestamp, but you'll have a record of all changes. Overkill in most situations, though -- I usually just use triggers. If you are OK with nearest .01 seconds, you can use date format and assign sysdate. If you need more detail, use the timestamp. |
||
|
|
|
|
You can get very close to this by querying This is more accurate if you created the table with the ROWDEPENDENCIES option. It actually logs the commit time for the record ...
|
||
|
|
|
|
Yes, via a trigger:
This assumes your table has a field called modified_on. As has been noted above, a trigger is an ideal candidate anytime you have multiple different places where the table gets updated. If you only have one function/procedure that can update the table, just do it there, and skip the trigger. |
|||
|
|
|
|
This is an interesting question. For oracle i usually use a trigger to update the timestamp field
Oracle does not seem to have a built-in attribute for updating the timestamp field to the current timestamp (unlike other DBs like MySQL). |
||
|
|
|
|
Pretty sure you have to do this with a trigger in Oracle:
|
||||||||||
|
