What is the best way to randomize the time part for a DATE column, using Oracle 10g?
For example, the date portion for the data was set as follows:
UPDATE table_name SET column_ts = SYSDATE - 120 + MOD(ROWNUM, 35)
I would like the time portion to have a different value for each row.