Hey,
Based on my understanding MySQL SP is not supported within ADF SP activity.
PFB similar reference :
https://stackoverflow.com/questions/64438768/executing-mysql-procedure-from-azure-data-factory
You can use lookup activity for the same.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have created a linked service for azure database for mysql. I am able to pull or push data to a table. But when I tried to call the stored procedure, I can't see the linked service from the settings in stored procedure components. Could someone help?
Hey,
Based on my understanding MySQL SP is not supported within ADF SP activity.
PFB similar reference :
https://stackoverflow.com/questions/64438768/executing-mysql-procedure-from-azure-data-factory
You can use lookup activity for the same.
Hi Biggy,
Thank you for posting query in Microsoft Q&A platform.
In
Lookup Activity
try to write query that runs your SP. This way Lookup Activity can run your SP. Also, insideLookup Activity
you will have SP option. Try that option as well if that suits for you. I believe your API provides you some values in output json of activity which you want to pass to SP parameters. Write expressions to take API values and pass them to SP parameters inLookup Activity
.
Hope this helps. Please let me know if any further queries.
Please consider hitting Accept Answer
button. Accepted answers help community as well. Thank you.