vote up 1 vote down star

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.

flag

2  
Set it equal to 4. Guaranteed to be random. – Matthew Jones Aug 27 at 16:43
Thanks, Matthew. tinyurl.com/3aav3f – Dave Jarvis Aug 27 at 18:17

2 Answers

vote up 3 vote down check

Choose a random number between 0 and 86400 (number of seconds in a day)

Add random / 86400 to your date.

SELECT TRUNC(SYSDATE)+DBMS_RANDOM.value(0, 86400-1)/86400 FROM DUAL

ADDITION:

UPDATE table_name
SET    column_ts = SYSDATE - 120 + MOD(ROWNUM, 35) + DBMS_RANDOM.value(0, 86400-1)/86400;
link|flag
UPDATE table_name SET column_ts = SYSDATE - 120 + MOD(ROWNUM, 35) + DBMS_RANDOM.value(0, 86400-1)/86400; – cagcowboy Aug 27 at 16:57
Perfect. Thank you! – Dave Jarvis Aug 27 at 16:59
vote up 2 vote down
select trunc(sysdate)+dbms_random.value from dual;
link|flag
If DBMS_RANDOM.VALUE returns more than 86400, this will potentially increase the day. This is probably unwanted. – cagcowboy Aug 27 at 16:50
DBMS_RANDOM.VALUE is defined to return a number between 0 and 1 – Chi Aug 27 at 17:02
(if you don't pass in any arguments) – Chi Aug 27 at 17:03
Can it return 1.0? – jva Aug 28 at 7:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.