Automate copy of 3 tables to sql server in another domain?

  • I have read about ssis but am still not sure how I would do this.

    I have two sql 05 servers. I would like 3 of the tables on one to copy over to another in an another domain. The other server is reachable through a vpn link. Could I set this up so it would happen automatically every night?

    thanks

  • Hello,

    You could consider using Snapshot Replication, but may be a scheduled SSIS package is easier to Administer.

    For the SSIS package, use the Export Wizard to perform the task once and use the Wizard’s option to store the task as an SSIS Package. Then use SQL Agent to schedule a regular overnight job to execute the stored SSIS Package.

    Regards,

    John Marsh

    www.sql.lu
    SQL Server Luxembourg User Group

  • I'd prefer the SSIS stuff myself, though it would be more work. Replication will do it, just remember that there will be a time the table is not available as it's dropped/truncated and rebuilt.

  • How big are the tables ?? If they're huge, transactional replication might be good. otherwise the SSIS option would be simpler.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply