Hello everyone,
The reason for my question is to receive information about the best way to make a call to an integration services package hosted in the SSISDB catalog using C # .Net.
Is it possible to create a stored procedure that calls the package and returns some type of id that allows me to track the progress of the package execution?
If I do it this way:
"EXEC SSISDB.CATALOG.start_execution @execution_id"
should it be on the same server for it to work? Or could I have the stored procedure hosted on another server and another database and make the remote call?
To check the progress tracking, the sysssislog table should be hosted on the same server?
The other way I thought was to contain the package in a job, but I do not know if there is a way to get some execution id and relate it to what is recorded in the sysssislog table
All the help and guidance that you can give me I would appreciate it
This for sql server 2012