Home > database >  How to retrieve Azure Copy Task name?
How to retrieve Azure Copy Task name?

Time:10-06

I have an Azure Pipeline but want to retrieve the name of the copy task and pass this to a stored procedure - how do I do this?

I can retrieve the Pipeline Name but can you also retrieve the Copy Task name without typing it in? There does not appear to be a system variable unless I'm missing something?

enter image description here

CodePudding user response:

unfortunately you have to manually provide the task names and there are no out of the box feature as of now in ADF to dynamically provide it

  • Related