@libpekin
Thanks for reaching out to Microsoft Q&A.
Check 1: Verify Parent Pipeline Parameters
In the parent pipeline, go to the Execute Pipeline activity that calls the child pipeline. Under the Settings tab, check that the parameters are being passed correctly. Make sure that the parameter names and values are correct.
Check 2: Verify Child Pipeline Parameters
In the child pipeline, go to the Parameters tab and verify that the parameters param1
and param2
are defined correctly.
Check 3: Verify Execute Pipeline Activity Settings
In the parent pipeline, go to the Execute Pipeline activity that calls the child pipeline. Under the Settings tab, check that the Parameters section is correctly configured. Make sure that the parameter names and values are correct, and that they match the parameter names defined in the child pipeline.
Check 4: Verify Lookup Activity Settings
In the child pipeline, go to the Lookup activity that calls the stored procedure. Under the Settings tab, check that the Stored procedure section is correctly configured. Make sure that the parameter names and values are correct, and that they match the parameter names defined in the stored procedure.
- Try debugging the pipelines by enabling Debug mode in the parent pipeline and checking the output of the Execute Pipeline activity.
- Check the Output tab of the Execute Pipeline activity to see if the parameters are being passed correctly.
- Verify that the stored procedure
usp_loading_bronze
is correctly defined and that it expects the correct input parameters @param1
and @param2
.
Hope this helps. Do let us know if you any further queries.