SQL Server 2019's python via Azure Data Studio

H

Hanifa21

Hi, We are building a ML solution using SQL Server Machine Learning services ? We understand that you can invoke the SQL instance python via commands like this.EXECUTE sp_execute_external_script @language = N'Python', @script = N' a = 1b = 2c = a/bd = a*bprint(c, d)' The above commands will run in the SQL Server. However, this is not ideal for a development scenario. The idea is that we develop via Azure Data Studio and finally copy and pasta the codes via the sp_execute_external_script. However, we are facing an issue here.In the SQL Server, the python environment comes from here.C:\Progr

Continue reading...
 
Back
Top Bottom