How to import files via HTTP in SSIS
How can I import data into SQL server via http server ?
Thanks
How can I import data into SQL server via http server ?
Thanks
RemoteUri
LocalFileName
Ensure they are type String, and set some suitable values. Add a Script Task, and replace Sub main with Ash's code.
How can i do to specifiy the path of local file with something like
PhysicalApplicationPath in a DTS script task ?
The script references a variable to get the file - Dts.Variables("LocalFileName").Value
Or
Is PhysicalApplicationPath a special path that you expect to be derived? If so what exactly would you expect it to be?
Thanks