MS SQL Server 2016 SSIS Failed to deploy project. Error:27203

Ugur 0 Reputation points
2023-10-16T15:20:13.5533333+00:00

Hello. I have MS SQL Server 2016 and Integration Services 13.0 installed. I am able to create SSIS packages via Visual Studio 2022 and run them successfully. But I cannot deploy the SSIS packages on SQL Server. I created Integration Services Catalog and folder but I am getting "Failed to deploy project. Error:27203" error when I try to deploy it. I had different names of @@SERVERNAME and SERVERPROPERTY('SERVERNAME') but I solved it via this link
https://stackoverflow.com/questions/63797484/ssis-failed-to-deploy-project-error-27203

EXEC sp_dropserver 'oldservername';  
GO  
EXEC sp_addserver 'newservername', local;  
GO  

but still no use (I restarted SQL Server afterwards yet I still get the same error).

"Select * from SSISDB.catalog.operation_messages" gives me nothing. I don't know what to do. Everything seem to work fine. I have no idea what to do now.

F.Y.I its not due to the version of Visual Studio 2022. I was able to deploy packages with same Visual Studio version into SQL Server 2012.SSIS_ERROR_2

SSIS_ERROR

SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,702 questions
SQL Server Other
{count} votes

1 answer

Sort by: Most helpful
  1. ZoeHui-MSFT 41,491 Reputation points
    2023-10-17T09:15:55.29+00:00

    Hi @Ugur

    SQL Server 2016 is not supported as target server version. (Target server versions supported are SQL Server 2017, 2019 and 2022.)

    F.Y.I its not due to the version of Visual Studio 2022. I was able to deploy packages with same Visual Studio version into SQL Server 2012.

    It's confused why you could deploy to SQL Server2022, could you please try to use VS2019 to deploy the package?

    You may also try to deploy the packages with SSMS or command to see if it could succeed.

    Deploy a project to the Integration Services Server

    Regards,

    Zoe Hui


    If the answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.