Quantcast
Channel: SQLServerCentral » SQL Server 2014 » Development - SQL Server 2014 » Latest topics
Viewing all articles
Browse latest Browse all 3145

SSIS Deployment

$
0
0
Hi,I need to deploy a SSIS project to a remote server to which I have very limited access. Don't have remote access to this SQL server. In fact, the only way I can connect is with RDP via a Citrix portal.Usually, we'll just create the .ispac file & copy it to SSIS server & then run this as part of a SQL script:DECLARE @ProjectBinary as varbinary(max)DECLARE @operation_id as bigintSet @ProjectBinary = (SELECT * FROM OPENROWSET(BULK 'MyProj.ispac', SINGLE_BLOB) as BinaryData) Exec catalog.deploy_project @folder_name = 'MyFolder', @project_name = 'MyProj', @Project_Stream = @ProjectBinary, @operation_id = @operation_id outProblem now is, I can't even copy the .ispac file to this remote server.Is there a way I can get the binary version of the .ispac file & just add this into the SQL script? In other words, instead of using OPENROWSET to import the .ispac file, somehow export/convert the entire project to binary beforehand?Hope this makes sense...Thanks.

Viewing all articles
Browse latest Browse all 3145

Trending Articles