Search code examples
sql-serverazureazure-function-appwebjob

Azure Storage to Azure SQL Server using FunctionApp


I have one Storage Account on Azure where I get lots of json files from somewhere. I am running an exe on my computer constantly to get the Json File and read the data from json and convert the data into table and upload it on an SQL Server database on azure - A synchronization process

I have not worked with WebJob or FunctionApp

I believe this can be done by FunctionApp triggering on blob. I am not sure if I will be able to do the complete process as I do locally on FunctionApp.

Is this the right decision for this purpose or would you suggest WebJob for this?


Solution

  • If you prefer to use azure web jobs, this should be as simple as just uploading a .zip file of your project. You can follow this article to create the webjob, and the webjob should work as what you do locally.

    If you prefer to use azure function, then you can use blob trigger do the same thing, but you may make some changes as per your need.