Reputation: 1037
I am working on a migration project where I have a few SQL Server Integration Service projects that will be moved to Azure Data Factory. While I go through this we have a few jobs scheduled via SQL Server Agent which has multiple steps. If were to replicate the same using Azure Data Factory triggers is there a way to group multiple pipelines together and sequence the execution accordingly like we have multiple job steps in SQL Server Agents.
For instance:
Please guide in the right direction.
Upvotes: 0
Views: 1241
Reputation: 88851
You can use the Execute Pipeline Activity to build a master pipeline that runs your other pipelines. eg
Upvotes: 1