Move table to different Destination

  • Hi

    I have x(Source) table in one server and Y(Destination) table in different server and i have a(destination),b(destination),c(destination) tables in different servers.

    but x,a,b,c,y are of same structure...

    1. Based on city COLUMN i have to move x data to a,b,c and y destination table at a time with out using multiple OLEDB destination transformation.

    That is dynamically passing data to different destination with out oledb destination

    Can you please help me on this i am new to ssis ...

  • Is there a reason you can't use multiple OLE db destinations? That would likely be the best way ... get the data from your source, do a conditional split on city and map each condition to a seperate ole eb destination with a connection to the appropriate server.

    If you really don't want that, you could probably put your data flow in a for loop container, and put an expression in your ole db destination that changes the connection used (or connection string if you only want to define one connection too) based on your iteration of the loop.

    Upside is it would be easy to add more city/server destinations in the future. Downside is you query the source multiple times instead of getting all the data and splitting it.

  • Thank you

    I understand but can you please share me with example its my request...

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

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