I need to copy several million rows of data from a linked server into a database table. I am a little hesitant to just
INSERT INTO xxx (...)
SELECT (...)
FROM
Is this the best way? Are the Export/Import tools more efficient than the above simple query? What about Bulk Insert? I have never used that before.
Thanks for any advice!
INSERT INTO xxx (...)
SELECT (...)
FROM
Is this the best way? Are the Export/Import tools more efficient than the above simple query? What about Bulk Insert? I have never used that before.
Thanks for any advice!