1

我计划通过表中的 Datetime 列将表记录从一个数据库移动到另一个数据库,请建议执行该任务的最佳方法,因为每天表将收到 2000 - 5000 条记录,所以它正在变得庞大

例子

Database (X)
table (xx) 

copy the records from table(xx) of database (X) by fetching 3 months old data by targeting Datetime column in the Table(xx) 

To 

Database(Y)
table(yy)
4

1 回答 1

1

您是否考虑过 SSIS 包?构建完成后,您可以手动运行它或安排它在特定时间间隔运行。这里有一些材料,我必须承认,它很容易构建,特别是对于像你描述的那样简单的任务。

http://www.mssqltips.com/sqlservertutorial/207/creating-a-simple-ssis-package/

http://msdn.microsoft.com/en-us/library/ms169917(v=sql.105).aspx

http://www.katieandemil.com/create-ssis-package-find-an-example-how-to-create-an-ssis-package-a-simple-one

于 2012-09-09T12:37:50.067 回答