Hi..
Source File:
http://www.webname.com/files/log.csv
Destination: SQL Server to process the rows
I am trying to get the above file into SQL server to query the data. The above file takes a username and password.
Do I need to create a linked server?
The only way i can think of at present is to copy the file onto the server(by FTP) and query it something like this.
select * from OpenRowset('MSDASQL'
,'driver={Microsoft Text Driver (*.txt; *.csv)}
;DefaultDir=C:\;'
,'select * from log.csv')
Any help or pointers appreciated
Dan