UnicodeDecodeError: 'charmap' codec can't decode byte 0x90 in position 8: character maps to <undefined>
Am seeing the above error in this simple SQL query:
df = pd.read_sql(query,connection)
I tried the query normally on SQL developer and it works perfectly fine. I am really stumped here as to how to specify encoding in a read_sql call.
Am using Python 3.4 and pandas version 0.14.1
connect()to your database, pass thecharset='utf8'parameter.SELECT * FROM NLS_DATABASE_PARAMETERSNLS_CHARACTERSETcharset='iso-8859-1'