I am running a sql in toad
select (to_date('01/JAN/1970')+(1122568480/86400)) from dual
to get normal date when there is epoch date stored which is the number of seconds since 1,1,1970 andit runs fine there.
But when i try to run this same sql in crystal reports using native connection it gives
Error - 01858 non-numeric character was found where numeric was expected.
This same sql runs fine in crystal reports when i am using ODBC connection.
select (to_date('01/JAN/1970')+(1122568480/86400)) from dual
to get normal date when there is epoch date stored which is the number of seconds since 1,1,1970 andit runs fine there.
But when i try to run this same sql in crystal reports using native connection it gives
Error - 01858 non-numeric character was found where numeric was expected.
This same sql runs fine in crystal reports when i am using ODBC connection.