Application team reported me that one of the SSIS package is failing after recent changes. It was failing with message “Binary Code for the script is not found”
I have been asked to troubleshoot the issue. I have opened the SSIS package in SQL Server Data tools and try to run the package from SSDT. Here is the error i have received

The package was using Script Task and i have opened the script tasks to see any coding/syntax errors. I found there was missing semicolon and un compiled code. I have modified the logic in Script task and save the package.
After that i have ran the package and it is successful.
Conclusion:
Error “The Binary code for the script is not found” usually occurs when you use Script task in SSIS and save the task with errors. Edit the script task, correct the issues and then execute the package.
Hope you enjoyed the post!
Cheers
Ramasankar Molleti
LinkedIn: LinkedIn Profile
Twitter: Twitter
Like this:
Like Loading...
Related
Published by Ramasankar
Hi. I’m Ramasankar Molleti.
I’m a passionate IT professional with over 14 years of experience on providing solutions for customers who are looking on cloud computing, Database Migration, Development, and Big Data. I love learning new technologies and share my knowledge to community.
I am currently working as Sr Cloud Architect with focus on Cloud Infrastructure, Big Data. I work with developers to architect, build, and manage cloud infrastructure, and services.
I have deeep knowledge and experience on working with various database platforms such as MS SQL Server, PostgeSQL, Oracle, MongoDB, Redshift, Dyanamodb, Amazon Aurora.
I worked as Database Engineer, Database Administrator, BI Developer and successfully transit myself into Cloud Architect with focus on Cloud infranstructure and Big Data.
I live in USA and put my thoughts down on this blog. If you want to get in touch with me, contact me on my Linkedin here: https://www.linkedin.com/in/ramasankar-molleti-23b13218/
My Certifications:
Amazon:
AWS Certified Solutions Architect – Professional
AWS Certified DevOps Engineer – Professional certificate
AWS Certified Big Data – Specialty
AWS Certified Security – Specialty certificate
AWS Certified Advanced Networking – Specialty certificate
AWS Certified Solutions Architect – Associate
Microsoft:
Microsoft® Certified Solutions Associate: SQL Server 2012/2014
Microsoft Certified Professional
Microsoft® Certified IT Professional: Database Administrator 2008
Microsoft® Certified Technology Specialist: SQL Server 2008, Implementation and Maintenance
View more posts
How did you modify the logic in Script task? Is this all about semi colon?
There was a syntax error in the script task. In this case semi colon, but in general if you do save the script task with errors you do get this type of error. That is the mistake from the TFS side, they Checked in the package in source control with syntax errors. My team deployed the same in server as a SQL Agent job. Hence, the failure of the package.
million thanks
Glad it helped.