Link to home
Start Free TrialLog in
Avatar of Charles Baldo
Charles BaldoFlag for United States of America

asked on

Insert SQL Data from Different Server

I need to write  a sql server statement that will insert data into a table from a table that is on a different physical server.  How can I do this?
ASKER CERTIFIED SOLUTION
Avatar of Kyle Abrahams, PMP
Kyle Abrahams, PMP
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I'd say linked server or just linked table, if You have msaccess it's as simple as create table-> liked table->path.
insert values into table from @linked_table
Avatar of Charles Baldo

ASKER

Thanks