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.
Asked
Active
Viewed 318 times
3
-
Is your blob container public or private (can you list/get object without authentivation)? – Matej Dec 02 '11 at 08:44
1 Answers
3
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?