Hi,
I found many examples of BULK INSERT on the net, like this
BULK INSERT TempPGNFile
FROM 'c:\testfile.csv'
WITH
(
ROWTERMINATOR = ''
);
What about a remote file? I have just a link on the web. The code below doesn't work for me.
BULK INSERT TempPGNFile
FROM 'http://data.domain.com/view_file.aspx?code=234&download=1'
WITH
(
ROWTERMINATOR = ''
);
Any tips?