Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sync data from MS Access to MS SQL

Is there any way so that whenever we insert data in Ms Access table then it will sync in MS SQL table. Table schema will be same in both database.

I have to do something so that data will sync from MS Access to MS SQL because both database are live.

like image 919
Pankaj Avatar asked Jan 04 '12 17:01

Pankaj


1 Answers

You can write an MS SQL SSIS package to do this. Here's an article on how to set up your AccessDB as a datasource so that you can reach it from within your SSIS package (note that you'll want to read the section on Access 2003 and earlier). And if you've never created an SSIS package before, here is a simple SSIS tutorial.

like image 137
Aaron Avatar answered Oct 11 '22 09:10

Aaron