How to install Python in SQL Server | Run Python Scripts

preview_player
Показать описание
How to use Python in SQL Server
How to install Python in SQL Server
How to install and update Python Libraries into SQL Server
Install packages with Python tools on SQL Server
Install Python package SQL Server
Adding Python Packages to SQL Server
Рекомендации по теме
Комментарии
Автор

-- connect to the instance where Machine Learning Services is installed
sp_configure

-- to enable the external scripting feature that supports python

EXEC sp_configure 'external scripts enabled', 1
RECONFIGURE WITH OVERRIDE

execute sp_execute_external_script
@language = N'python',
@script = N'print("hello world")'

BndarAbdulrhmancom