Search code examples
azure-data-factory

How To Parameterize Stored Procedures in Azure Data Factory


I have the following hard coded Stored Procedure in Azure Data Factory

enter image description here

Can someone let me know how I can parameterize it? I need to be able select from a range of Stored Procedures.


Solution

  • You can use script activity task to parameterize the stored procedures as well

    You can also use dynamic content in SP activity as well : enter image description here

    examples : SP activity
    enter image description here

    enter image description here

    Updated: enter image description here

    enter image description here