Quantcast
Channel: SQL Server Integration Services forum
Viewing all articles
Browse latest Browse all 24688

SSIS Project Deployment - no message in operation_messages Procedure deploy_project, Line 139

$
0
0

I'm trying to deploy my SSIS project to production for the first time. It works in non prod (using the same ispac file).  There is no message in the operation_messages view. Here are the commands I used in production:

DECLARE @ProjectBinary as varbinary(max)
DECLARE @operation_id as bigint
Set @ProjectBinary = (SELECT * FROM OPENROWSET(BULK '\\DB-ABCDE\Packages\migration\ICE_main_project.ispac', SINGLE_BLOB) as BinaryData)
Exec ssisdb.catalog.deploy_project @folder_name = 'ICE', @project_name = 'ICE_main_project', @Project_Stream = @ProjectBinary, @operation_id = @operation_id out
Msg 27203, Level 16, State 1, Server DB-ABCDE\ABCDE, Procedure deploy_project, Line 139
Failed to deploy project. For more information, query the operation_messages view for the operation identifier '50'.

The error messages is not logged into SSISDB. I just started working with the data base and there aren't any rows 
in [SSISDB].[catalog].[operation_messages] yet.
  select count(*) from [SSISDB].[catalog].[operation_messages]
  0

There is a row in [SSISDB].[catalog].[operations] that is not helpful.
SELECT count(*) FROM [SSISDB].[catalog].[operations]
  where operation_id = 50
  1

I can deploy the same exact ipac file to the non prod server.
Command(s) completed successfully.


Viewing all articles
Browse latest Browse all 24688

Trending Articles