Click here to Skip to main content
15,881,898 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have done with ssis package creation now i want to execute it in another machine which does't have bi..how we can exute package in another machine

Please tell me the process to be done.any answer would be greatly appreciated.

What I have tried:

my packge name is package22 under prohect3 please tell me what is procedure to exceute package in another machine or server..
Posted
Updated 31-May-16 22:47pm

1 solution

Hi,

Deploy your SSIS package to existing server SSIS catalog and create one procedure in SSISDB database.

and execute the ssis package from the server where you want to execute without BI by using procedure.

Note: External server and SSIS package server should have linked.

Execution statement looks like below..

Exec [dbo].[Procedurename]
@Login =UserLogin;
,@folder_name =poc; -- Folder name where you deployed in SSIS Catalog
,@project_name =Project;-- Project name where you deployed in SSIS Catalog
,@package_name =PKG_Load_extract_GEN.dtsx; -- Package name
,@FileName =filename_abc.txt; --parameters
,@Filepath =\\ExternalSource_Production\IT\ETL; --file path --parameters
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900