The Python Oracle

Reflecting Oracle Global Temp Tables Using Pythons SQLAlchemy

Become part of the top 3% of the developers by applying to Toptal https://topt.al/25cXVn

--

Music by Eric Matyas
https://www.soundimage.org
Track title: Industries in Orbit Looping

--

Chapters
00:00 Question
01:18 Accepted answer (Score 0)
01:36 Thank you

--

Full question
https://stackoverflow.com/questions/3025...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#python #oracle #sqlalchemy

#avk47



ACCEPTED ANSWER

Score 0


Appending to metadata via MetaData.Tables() appears to work but guessing there is a better solution:

    Test = [sqlalchemy.Table(t, meta, autoload=True, autoload_with=_engine, schema=_schema)
        for t in schedule.tables.values]