I want to extract data from one database and send it to another database. How can I do that.
Hi @burak
-
Use a Connect activity to connect the source datatable. Build the corresponding connection string in the configuration wizard of the activity.
-
Use Execute Query activity to get the data. Store the data in a variable dt_sourceData of variable type datatable.
-
Use another Connect activity to connect to the destination database.
-
Use Insert Datatable activity to insert the datatable dt_sourceData to the destination database, to which the connection has been established.
Hope this helps,
Best Regards.
2 Likes