I have a system that does bulk inserts into a database. I've been using the example from Bulk insert with SQLAlchemy ORM, that utilizes SQLAlchemy Core.
I'd now like to update the database with GTFS data. This requires replacing any previous data as the rules dictate that it a new dataset completely replaces an old dataset, as there may have been changes.
What I had in mind was to insert into a temporary table in the database, delete all now expired data from the production table, copy the data into the production table, and then delete the temporary table.
Does anyone know if it's possible to insert into a temporary using the core syntax, like this? I already have a system that can easily create objects that use this system.
Foo.__table__.insert().execute([{'bar': 1}, {'bar': 2}, {'bar': 3}])
Is this a good way to do this? If not, can anyone suggest a better way that will be performant?