Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
I came across this SO question (stackoverflow.com/questions/9593610/…) which I think might be a step in the right direction. – Jamie Starke Oct 23 '12 at 5:46

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.