executeprocesstask

Release Lock on variables used in Execute Process Task | SSIS

与世无争的帅哥 提交于 2019-12-10 18:05:36
问题 I have a package with a Foreach Container and Execute Process Task inside ForEach Container . On some error in Execute Process Task it redirects to OnError Event handler of ForEach Container . I am capturing the Error from .exe using StandardErrorvariable property of the Task and using this in the script task which is present in OnError Event Handler. The Script Task fails saying Error: A deadlock was detected while trying to lock variable "User::ErrorExcelName, User::ErrorFolder, User:

Predicting data with Python script in an SSIS package

a 夏天 提交于 2019-12-02 06:26:17
问题 I'm aware of Microsoft's inclusion of Python in their Machine Learning Services for SQL server, however this is only available for SQL Server 2017 and up, which is a requirement my servers do not currently meet. With that being the case, I wanted to deploy my generate-predictions-with-trained-model pipeline entirely within SSIS, I.E: Grab data from my DB Pass it to a Python Script Data Flow Task which imports the trained model, generates the predictions and passes them on to the next Data

Predicting data with Python script in an SSIS package

此生再无相见时 提交于 2019-12-02 02:41:57
I'm aware of Microsoft's inclusion of Python in their Machine Learning Services for SQL server, however this is only available for SQL Server 2017 and up, which is a requirement my servers do not currently meet. With that being the case, I wanted to deploy my generate-predictions-with-trained-model pipeline entirely within SSIS, I.E: Grab data from my DB Pass it to a Python Script Data Flow Task which imports the trained model, generates the predictions and passes them on to the next Data Flow Task Write the predictions to the DB Is there a way to do that entirely within SSIS, or will it be