Job to regularly archive a table
SSIS is a tool that would do the job well. Given certain other conditions, plain old T-SQL would be able to do it just as well. To use SSIS, you'd need to install the bits on a server, create a package for the process, and schedule execution of that package via SQL Agent, or another scheduler, or manual initiation. You would likely need to create a proxy for a domain account with permissions to conduct that work. To use T-SQL, you'd need to create a linked server to the other server/database, craft a batch of SQL commands to copy and truncate data, then use SQL Agent, or another scheduler, or manual initiation to start it. Talk to me now on
March 19th, 2011 1:38am

Hello, I want to regularly archive a table upto a certain date to another server/database and then purge the original table upto that particular date. Is SSIS the tool I should use? Thanks.
Free Windows Admin Tool Kit Click here and download it now
March 19th, 2011 2:58am

Hello Ryan, When you have complex manipulation, it is always suggested to go for SSIS. In your case, yes you should better use SSIS. Ofcourse you can achive the same with stored proc, but its complex. Best regards
March 19th, 2011 3:18am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics