Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Fisheye date column format in Oracle database

Sébastien Maisonneuve November 19, 2014

Hi all,

I want to query some data in my fisheye schema hosted in an Oracle database. Date columns are stored as number and I want to convert them in date. How can I do that?

Regards,

Sébastien

2 answers

1 accepted

0 votes
Answer accepted
Jeff Thomas
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 22, 2014

FishEye stores the dates as the number of milliseconds since January 1, 1970. This query should convert the milliseconds to a date:

select to_char(to_date('1970-01-01 00','yyyy-mm-dd hh24') +
(cru_create_date)/1000/60/60/24 , 'YYYY-MM-DD HH12:MI:SS am')
from cru_review;
0 votes
Sébastien Maisonneuve November 25, 2014

Thanks a lot smile

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events