Closed janzinho closed 1 year ago
If you see this warning, I suspect there are mixed types or some misalignment in data.
You may debug it by using .export_to_file()
and trying to read this file later with pandas.read_csv()
.
Specifically with timestamps, I remember a few odd use cases, when you have timestamp values outside of bounds supported by pandas. For example, Exasol timestamp can go as low as 0001-01-01 00:00:00
. Pandas can only go as low as 1700-something, which may cause values to be treated as string instead of timestamp.
It is hard to tell without seeing actual data.
@janzinho were you able to debug and maybe fix your problem with the suggestion @littleK0i provided?
Closing ticket, since there is no response from requester.
Hi, I'm getting the following error message when trying to load a table from exasol into a pandas dataframe using pyexasol:
My script:
Best, Jan