Hi @Julian Hicks ,
This issue occurs due to a version mismatch between the SSIS tools and the SQL Server instance. Specifically, the missing DLL (batch parser DLL
) is located in the ps_modules\Microsoft.SqlServer.IntegrationServices.Commands.Cmdlets\
folder, and its absence suggests that either the SSIS tools are not properly installed, or the required version of the SQL Server Integration Services (SSIS) components is incompatible with the current setup.
To resolve this, start by checking that both the SSIS tools on the Azure DevOps agent and the SQL Server instance you're working with are on compatible versions. you need to update the SSIS task components to match the SQL Server version you're using, such as updating to the latest version of SQL Server Data Tools (SSDT) and the associated PowerShell cmdlets. Additionally, verify the permissions of the Azure DevOps agent to ensure it has access to modify the SSIS catalog. Reinstalling or updating the SSIS PowerShell module using Install-Module -Name SqlServer
can also help resolve any issues with outdated or missing cmdlets. If the problem persists, check the configuration file you're using for the SSIS catalog parameters, as incorrect parameter formatting can trigger errors during deployment.
Hope it helps!
Please do not forget to click "Accept the answer” and Yes
wherever the information provided helps you, this can be beneficial to other community members.
If you have any other questions or still running into more issues, let me know in the "comments" and I would be happy to help you.