Continuing from my previous post: Azure Data Factory Get Metadata to get blob filenames and transfer them to Azure SQL database table
I am trying to write a stored procedure to take json string as input and insert this string into SQL table as an output in Azure Data Factory. This is the Stored Procedure activity in my Azure Data Factory. I already wrote and save the begging of my stored procedure which is in Azure SQL server.
Here is the beginning of my Stored procedure: I got some ideas from this post: Creating a stored procedure which ingests data after reading a JSON string
Here is my sample output.json file that I got it from the previous activity, Get Metadata of my pipeline. I basically need to get the value of itemName in this json file as an input of the stored procedure.
Could you please help me how to continue this stored procedure? Thank you very much in advance.