how to create ssis package to copy table from one server to another server

  • how to create ssis package to copy table from one server to another server using BIDS

  • Put a dataflow on the control flow. Add an OLE DB source and an OLE DB Destination. Done.

    (you can find stuff like this in even the most basic tutorial on SSIS. Did you do any research?)

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • Koen Verbeeck (12/6/2012)


    Put a dataflow on the control flow. Add an OLE DB source and an OLE DB Destination. Done.

    (you can find stuff like this in even the most basic tutorial on SSIS. Did you do any research?)

    But that will copy the data.I want to create new table on other server.

    Don't know if transfer sql server objects task will do it.

  • You can create a new table in the OLE DB Destination component.

    Or you can use the Transfer SQL Objects task.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • Thanks Koen.

  • The transfer object task is pretty defunct. It will work the first time but anything after that if the table exists it will fail when trying to overwrite or append, even if that is the option you selected.

  • Not quite that simple, you have to also put a step in between the oldb connections to select the tables you want.

Viewing 7 posts - 1 through 6 (of 6 total)

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