Psycopg2, Postgresql, Python: Fastest way to bulk-insert
问题 I'm looking for the most efficient way to bulk-insert some millions of tuples into a database. I'm using Python, PostgreSQL and psycopg2. I have created a long list of tulpes that should be inserted to the database, sometimes with modifiers like geometric Simplify . The naive way to do it would be string-formatting a list of INSERT statements, but there are three other methods I've read about: Using pyformat binding style for parametric insertion Using executemany on the list of tuples, and