hi,
on localServer i execute this query
INSERT INTO table (A, B, C)
SELECT A, B, C FROM LinkedServer.my DB.dbo.table
everything is fine. But if i execute this one
INSERT INTO LinkedServer.my DB.dbo.table (A, B, C)
SELECT A, B, C FROM table
it is very slow. Is there any solution to make it any faster?
on localServer i execute this query
INSERT INTO table (A, B, C)
SELECT A, B, C FROM LinkedServer.my DB.dbo.table
everything is fine. But if i execute this one
INSERT INTO LinkedServer.my DB.dbo.table (A, B, C)
SELECT A, B, C FROM table
it is very slow. Is there any solution to make it any faster?
Comment