Ich hatte ein sehr ähnliches Problem wie du. Ich konnte es lösen, indem ich eine andere Verbindungsmethode verwendete:
my_dsn = cx_Oracle.makedsn("host",port,sid="sid")
connection = cx_Oracle.connect(user="user", password="password", dsn=my_dsn)
cursor = connection.cursor()
querystring = "SQL query"
cursor.execute(querystring)
Siehe http://cx-oracle.readthedocs.io/en/latest/ module.html für weitere Informationen