Answered by:
I need records from db table which is on one server and move those records to different domain server db

Question
-
Aniruddha http://aniruddhathengadi.blogspot.com/
Wednesday, December 31, 2014 8:52 AM
Answers
-
Hi Aniruddha,
Just as Erland said, the best method is use SQL Server Integration Services (SSIS) to move some records from one server table to another domain server database.
To create a SSIS package to achieve your requirement, please refer to the following steps:
- Drag a Data Flow Task to Control Flow Task.
- Create two OLE DB Connection Managers that separately connects to the corresponding server database.
- Drag an OLE DB Source that connects to the source OLE DB Connection Manager.
- Connect OLE DB Destination to OLE DB Source.
- Drag an OLE DB Destination that connects to the target OLE DB Connection Manager, then create a new table as the destination table.
- Click Mapping pane to finish the mapping.
References:
Creating the Project and Basic Package in SSISThanks,
Katherine XiongKatherine Xiong
TechNet Community Support- Proposed as answer by BalmukundMicrosoft employee Thursday, January 1, 2015 6:26 AM
- Marked as answer by Katherine Xiong Wednesday, January 7, 2015 8:49 AM
Thursday, January 1, 2015 6:10 AM - Drag a Data Flow Task to Control Flow Task.
All replies
-
- Proposed as answer by BalmukundMicrosoft employee Thursday, January 1, 2015 6:26 AM
Wednesday, December 31, 2014 8:54 AM -
- Proposed as answer by BalmukundMicrosoft employee Thursday, January 1, 2015 6:26 AM
Wednesday, December 31, 2014 9:46 AM -
Hi Aniruddha,
Just as Erland said, the best method is use SQL Server Integration Services (SSIS) to move some records from one server table to another domain server database.
To create a SSIS package to achieve your requirement, please refer to the following steps:
- Drag a Data Flow Task to Control Flow Task.
- Create two OLE DB Connection Managers that separately connects to the corresponding server database.
- Drag an OLE DB Source that connects to the source OLE DB Connection Manager.
- Connect OLE DB Destination to OLE DB Source.
- Drag an OLE DB Destination that connects to the target OLE DB Connection Manager, then create a new table as the destination table.
- Click Mapping pane to finish the mapping.
References:
Creating the Project and Basic Package in SSISThanks,
Katherine XiongKatherine Xiong
TechNet Community Support- Proposed as answer by BalmukundMicrosoft employee Thursday, January 1, 2015 6:26 AM
- Marked as answer by Katherine Xiong Wednesday, January 7, 2015 8:49 AM
Thursday, January 1, 2015 6:10 AM - Drag a Data Flow Task to Control Flow Task.