kanderson
kanderson

Reputation: 177

How to run a SQL Server Script from Python

Having learned SQL before learning any Python, I have a fairly lengthy program/query that I wrote in SQL server which heavily transforms and calculates the data (Basically taking forecast, inventory, and Bill of Materials, and efficiency data and then automatically generating a production plan. While I am sure there are things I could optimize, the query/program itself is aorund 3,000 lines).

While I have figured out how to update the data in SQL Server using a combination of pandas, pyodbc, and fast_to_sql, I have not been able to find a simple method for running a SQL Server script through Python.

I am sure that I could achieve the same thing by just having the data manipulation occur in python rather than SQL Server, it would be fairly time intensive to translate everything.

If there is anything I can do to clarify please let me know. For reference I am using the 2017 version of Microsoft SQL Server python version 3.8.3.

Upvotes: 1

Views: 721

Answers (1)

Tushar Koley
Tushar Koley

Reputation: 164

Try to combine all of your MSSQL scripts into Stored Procedures and then call it from Python.

Upvotes: 1

Related Questions