The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Fisheye date column format in Oracle database

Sébastien Maisonneuve
Contributor
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

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
Contributor
November 25, 2014

Thanks a lot smile

TAGS
AUG Leaders

Atlassian Community Events