Hi,
Let's say I run this 2 SQL queries against an Oracle 10g Database, and retrieve the following results:
Query: select to_char(SYSDATE, 'YYYYMMDD_HHMISS') from dual;
Result: 20051213_102533
Query: select dbms_utility.get_time() from dual;
Result: 120792861
They are run in sequence, so I guess the millisecond can be the same, or have at least a maximum 2 milliseconds difference (although the first query doesn't have more precision than seconds, and so there may be a second difference at max).
Now my question is: dbms_utility.get_time() gives me the time in 100ths of seconds, but I thought it would be related to 0:00AM ... but I guess it is not ... so what are the results related to?
Let's say I run this 2 SQL queries against an Oracle 10g Database, and retrieve the following results:
Query: select to_char(SYSDATE, 'YYYYMMDD_HHMISS') from dual;
Result: 20051213_102533
Query: select dbms_utility.get_time() from dual;
Result: 120792861
They are run in sequence, so I guess the millisecond can be the same, or have at least a maximum 2 milliseconds difference (although the first query doesn't have more precision than seconds, and so there may be a second difference at max).
Now my question is: dbms_utility.get_time() gives me the time in 100ths of seconds, but I thought it would be related to 0:00AM ... but I guess it is not ... so what are the results related to?