Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"The selected data source is on remote computer" error when creating an SSIS job

I am in the process of developing an SSIS job on my workstation which a Data Flow Task open a comma delimited flat file on my local workstation and imports the data to a SQL server database on a remote server.

When I try to select the destination table in my SQL destination object, it gives me the following error:

The selected data source is on a remote computer. The bulk insert operation can be executed on the local computer.

How do I resolve the issue so I can test my SSIS package.

like image 436
Michael Kniskern Avatar asked Feb 08 '11 22:02

Michael Kniskern


1 Answers

The SQL Server destination only works if the package is running on the same machine as the specified database server. To use remote connections, change to an OleDb destination instead.

like image 53
grapefruitmoon Avatar answered Nov 06 '22 19:11

grapefruitmoon