Building simplicidade.org: notes, projects, and occasional rants

How to convert a UNIX timestamp to a date in Oracle

Might come handy - How to convert a UNIX timestamp to a date in Oracle:

TO_DATE('19700101000000','YYYYMMDDHH24MISS')
+ NUMTODSINTERVAL(unix_epoch, 'SECOND')

Coolness.