• I'd recommend using SSIS as its purpose is for developing ETL processes. If you want to stay within I would use a pass through approach via open query vs a distributed query like you're using. Meaning, send your statement to be executed on the remote server and have it pull the results back. Make sure that the remote server has proper indexing for the statement it's running.

    insert into dbo.claimdetail fields

    select fields

    from LinkedServer.prod1.dbo.clmdet

    where exists (select * from LinkedServer.prod1.dbo.ClaimsToPull

    where CN = cdclno and

    WN = cdwkno)

    to

    INSERT INTO claimdetail (col1,col2,...)

    SELECT col1, col2, ....

    FROM OPENQUERY (LinkedServer, 'SELECT col1, col2, ... FROM clmdet c WHERE EXISTS ( SELECT 1 FROM prod1.dbo.ClaimsToPull p WHERE c.Col = p.Col AND CN = CdClNo AND WN = CdWkNo')

    Here is a great article from a MSDN blog:

    http://blogs.msdn.com/b/sqlsakthi/archive/2011/05/09/best-performer-distributed-query-four-part-or-openquery-when-executing-linked-server-queries-in-sql-server.aspx