Microsoft Python Driver for SQL Server
github.com
Microsoft Python Driver for SQL Server
1–10 of 35 posts
Re: Microsoft Python Driver for SQL Server
#2Re: Microsoft Python Driver for SQL Server
#3Re: Microsoft Python Driver for SQL Server
#4What my workself would love is to easily dump Pandas or Polar data frames to SQL Tables in SQL Server as fast as possible. I see this bcp, but I don't see an example of uploading a large panda dataframe to SQL Server.
There are times I miss being a kid and just doing things.
Re: Microsoft Python Driver for SQL Server
#5Re: Microsoft Python Driver for SQL Server
#6Very cool. Used to be a huge pain to connect to sqlserver from Python (especially non Windows platforms).
Re: Microsoft Python Driver for SQL Server
#7What my workself would love is to easily dump Pandas or Polar data frames to SQL Tables in SQL Server as fast as possible. I see this bcp, but I don't see an example of uploading a large panda dataframe to SQL Server.
Re: Microsoft Python Driver for SQL Server
#8What my workself would love is to easily dump Pandas or Polar data frames to SQL Tables in SQL Server as fast as possible. I see this bcp, but I don't see an example of uploading a large panda dataframe to SQL Server.
Re: Microsoft Python Driver for SQL Server
#9What my workself would love is to easily dump Pandas or Polar data frames to SQL Tables in SQL Server as fast as possible. I see this bcp, but I don't see an example of uploading a large panda dataframe to SQL Server.
You might be able to do it with ibis. Don't know about the performance though
Re: Microsoft Python Driver for SQL Server
#10What my workself would love is to easily dump Pandas or Polar data frames to SQL Tables in SQL Server as fast as possible. I see this bcp, but I don't see an example of uploading a large panda dataframe to SQL Server.
How large? In many cases dumping to file and bulk loading is good enough. SQL Server in particular has openrowsets that support bulk operations, which is especially handy if you're transferring data over the network.