LAST_UPDATE_DATE update on row change of just attribute?
Does running a statement like this update the 'last updated date' in the row? or do i need to update that to sysdate?
UPDATE PO_HEADERS_ALL
set attribute1 = 'X'
where header_id = 1234
or is this necessary?
UPDATE PO_HEADERS_ALL
set attribute1 = 'X', last_updated_date = sysdate
where header_id = 1234