>
> like this?
>
> from sqlalchemy import MetaData, create_engine
> metadata = MetaData()
> engine = create_engine('postgres://user@host/Target')
> connect = engine.connect()
> connect.execute("set search_path to 'my_db'")
> metadata.reflect(bind=connect)
>
> (does not work)
that would be it. but search_path shouldnt affect anything SQLA does
regarding reflection. don't you just want to send "schema='my_db'" to
metadata.reflect() ?