mahesh
mahesh

Reputation: 3207

How to fetch the file placed in azure storage container to local machine using SSIS

I want to write a SSIS package to fetch the file placed in my azure storage container to my local machine , can i know any good article which explains it.

Upvotes: 3

Views: 330

Answers (1)

Matej
Matej

Reputation: 7627

The easiest way do download singe file is to create Script Task and then use WebClient.DownloadFile.

using (var wc = new WebClient())
{
    wc.DownloadFile("url", "localFileName")
}

You can also check How to make an HTTP request from SSIS?

Upvotes: 3

Related Questions