Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a integration service to regularly get file from a web link. Flat File connection manager only allow me to read from local file, but not from web. How can I do this?

Thanks

share|improve this question
I suggest adding a in a script task to bring the file locally then pick it up with the flat file connection manager. – JStead Apr 16 '11 at 23:27

1 Answer

Use a script task like seen in this article http://www.sqlis.com/post/Downloading-a-file-over-HTTP-the-SSIS-way.aspx. Then connect to the file using the file connection manager. You are going to need a similar file to the flat file gathered from the web to do the initial settings.

share|improve this answer
I've done it using script component myself as well. Seems that is simplest way. Thanks – Sheen Apr 18 '11 at 12:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.