David Jerome
David Jerome

Reputation: 43

Azure Unzip automation

I am looking to do the following in Azure however I should point out that on my local machine I have no visual studio, no admin rights, no IT support and no tools (except SSMS) but I have a VERY strong drive to complete this work if its possible.

I have created an Azure blob which receives a file each day (zipped) from a 3rd party. I am looking to do the following:

1)Unzip the data in an automated fashion

2)Get the data into an Azure SQL database (already created) in an automated fashion

What I want to know is if this is possible to do using Azure alone or am I going to need admin rights / Visual Studio? If it is possible any directions that you could point me in would be greatly received!

Thanks

Dave

Upvotes: 2

Views: 680

Answers (3)

Lenroy
Lenroy

Reputation: 341

Spin up your data factory on Azure, unzip function is available on adf

Upvotes: 0

David Jerome
David Jerome

Reputation: 43

Based on your description, one approach would be to create a Blob Triggered Azure Function through the Azure Portal (Visual Studio is not required), unzip/process the file and save desired data into Azure SQL. Moreover, considering the there is only one new file per day, prefer the Consumption Plan to optimize cost.

Find more details about Azure Function Blob Binding at https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob.

Upvotes: 0

Evandro de Paula
Evandro de Paula

Reputation: 2642

Based on your description, one approach would be to create a Blob Triggered Azure Function through the Azure Portal (Visual Studio is not required), unzip/process the file and save desired data into Azure SQL. Moreover, considering the there is only one new file per day, prefer the Consumption Plan to optimize cost.

Find more details about Azure Function Blob Binding at https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob.

Upvotes: 1

Related Questions