SQL Data Transfer

后端 未结 6 392
天命终不由人
天命终不由人 2021-01-14 05:03

I need to transfer data from one table to the same table in another server which has been truncated. What is the easiest way to do this?

6条回答
  •  孤街浪徒
    2021-01-14 05:31

    Depending on the amount and frequency of your data transfer. It it's a low volume one time process, you're better off with using T-SQL to directly insert the data. This can be done either through linked servers or OPENQUERY clause.

    If its high volume one time process, use SSIS or BCP utility.

    If its high volume high frequency, use replication.

提交回复
热议问题