Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"The binary code for the script is not found"

Tags:

ssis

I used the script found here

... And every time that I generate this dynamic package, it needs to open the script task and click "Ok" because the "The binary code for the script is not found." error aways appears. Is there a way to solve this without BIDS ? Thanks and sorry my bad english.

like image 861
user3613834 Avatar asked Nov 01 '22 00:11

user3613834


2 Answers

I got this error when a SSISDB was upgraded to 2016 from 2012 and the package was not re-deployed using newer visual studio with project set to deploy to SQL Server 2016 in the project deployment properties.

like image 136
Sam Avatar answered Jan 04 '23 15:01

Sam


This is often caused to to an error or omission in the code in the script task. If you are certain that the code is correct you can go to the script properties and set the PrecompileiIntoBindaryCode to False, the default is set to true. This is under the Properties or in the Script option of the properties window.

like image 31
Anthony Horne Avatar answered Jan 04 '23 15:01

Anthony Horne