Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Probably a classic... Would you know a easy trick to retrieve an UTC value of SYSDATE on Oracle (best would be getting something working on the 8th version as well).

For now I've custom function :(

Cheers,

Stefan

share|improve this question

2 Answers

up vote 14 down vote accepted

You can use

SELECT SYS_EXTRACT_UTC(TIMESTAMP '2000-03-28 11:30:00.00 -02:00') FROM DUAL;

You may also need to change your timezone

ALTER SESSION SET TIME_ZONE = '-2:00';

Or read it

SELECT SESSIONTIMEZONE, CURRENT_TIMESTAMP FROM dual;
share|improve this answer
1  
Well, the trick is to convert from SYSDATE. So first you will need to somehow establish what SESSIONTIMEZONE is, and use that knowledge in order to get the offset value for SYS_EXTRACT_UTC - won't you? – stic Jul 21 '09 at 9:55
Yes, You can check this link from oracle where Datetime and Time Zone Parameters: oracle.com/technology/obe/obe9ir2/obe-nls/datetime/datetime.htm – Jonathan Jul 21 '09 at 15:01
select sys_extract_utc(systimestamp) from dual;

Won't work on Oracle 8, though.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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