when I check this question, I don't understand why the solution is not working for me. I run the following code:
query = """SELECT*
FROM TRANSACTION
"""
df_ora = pd.read_sql(query, con=connection)
and get the error:
DatabaseError: ORA-00942: table or view does not exist
The database is organized in shemes, where Datenbasis is one scheme. So it looks like the following: Database ---> Datenbasis -> Table --> TRANSACTION
what do I miss here, what do I have to specify?
I am connection as following:
db_connection_string = 'User/pw@server:port/Name'
con = cx_Oracle.connect(db_connection_string)