简体   繁体   中英

SQL Server data transfer from one server to another server

我想每 1 小时自动将多个表及其数据从一个 SQL Server 传输到本地网络上的另一个 SQL Server。

There is a tool built-in tool in SSMS to do this.

In SSMS, right click on the database name. Select Data > Import on the destination database. You will be prompted to provide connection information for the source database. This is internally using SSIS integration tool.

  1. Create a SSIS Package USE Type two SCD if you want insert and updates. you can use staging table from source to destination is a good practice and it is industry standard. if you are not having staging environment. You can use temp tables within ssis package to achieve the same.

  2. Schedule a job and run that ssis package in the job for every half an hour

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM