pandas-to-sql

Speeding up pandas.DataFrame.to_sql with fast_executemany of pyODBC

Speeding up pandas.DataFrame.to_sql with fast_executemany of pyODBC Question: I would like to send a large pandas.DataFrame to a remote server running MS SQL. The way I do it now is by converting a data_frame object to a list of tuples and then send it away with pyODBC’s executemany() function. It goes something like this: import …

Total answers: 10