Here's what I wrote to the folks in my company regarding BULK INSERT:
The file has to be accessible from the SQL Server box by the SqlService account; this can be accomplished in one of the following 3 ways:
- creating a share on the file server and referring to the file by share name;
- Adding SqlService account to the Administrators group on the file server and referring to the file by full name( \\servername\e$\Data\...\f
- Manually copying the file to the DB server and referring to it by its local path
I found that the last option is usually the easier one :)
Main Topics
Browse All Topics





by: derekkrommPosted on 2007-07-20 at 19:08:05ID: 19536719
If you put the file on an FTP site on the remote server, you can create a DTS package on your local workstation to download the file from the FTP site and then run the bulk insert.
- derek