Hello I would like to execute SSIS package ona SQL azure server but SSISDB is on a different server
I would like to execute my SSIS on database (1) but my SSIS is on server (2)
When I execute this code on server (2) it works :
Declare @execution_id bigint
EXEC [SSISDB].[catalog].[create_execution]
@package_name='IMPORT_LPDATA.dtsx',
@execution_id=@execution_id OUTPUT,
@folder_name='TEST',
@project_name='Brazza',
@use32bitruntime=False,
@reference_id=Null
EXEC [SSISDB].[catalog].[start_execution] @execution_id
I would like now to execute my SSIS on server (1), it is possible . How can I do it ?
Thanks