So, I created a table
T=Table('DBNAME.T'....)
and once I used it
res=select([T]).execute()
the sqlalchemy constructed the following query with *quotes*
select "DBNAME.T".id from "DBNAME.T"
the problem is that ORACLE doesn't accept it, but if I manually drop
*quotes* from this select and pass it to sqlplus everything works,
i.e.
select DBNAME.T.id from DBNAME.T
How to disable *quoting* for SQLAlchemy?
Thanks,
Valentin.