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
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;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.