I use Bulk insert to put data to myTable.
When the SQL server is in local machin, it works well. But when I put
the data in a sql server situated not locally, then I get a error
message like this:
This post is similar to others, but am at a lost to fix it.
Could not execute bulk insert because file 'Q:\SQLServerRe port\01_DataLoa d\
01_Site.xls' could not be opened. Operating system
error code 3(The system cannot find the path specified.).
Running BULK INSERT from a Stored Procedure:
BULK INSERT Eval_Site
FROM 'Q:\SQLServerRe port\01_DataLoa d\01_Site.xls'
with
(
keepnulls
)
The Q: Drive is the same as for SQL Server 2005 as the data file.
What gives?
When the SQL server is in local machin, it works well. But when I put
the data in a sql server situated not locally, then I get a error
message like this:
This post is similar to others, but am at a lost to fix it.
Could not execute bulk insert because file 'Q:\SQLServerRe port\01_DataLoa d\
01_Site.xls' could not be opened. Operating system
error code 3(The system cannot find the path specified.).
Running BULK INSERT from a Stored Procedure:
BULK INSERT Eval_Site
FROM 'Q:\SQLServerRe port\01_DataLoa d\01_Site.xls'
with
(
keepnulls
)
The Q: Drive is the same as for SQL Server 2005 as the data file.
What gives?
Comment