简体   繁体   中英

how ms-access and sql server interact each other?

I have an ms-access database and I need when ever I add a record to my table automatically add a similar record to sql database how it is possible ?

Edit : How I can create an SSIS package(s) and set SQL Server Agent run to periodically load the data?

If you are using SQL Server 2000 you can use replication. But this feature is deprecated from SQL Server 2005 onwards. See http://msdn.microsoft.com/en-us/library/ms143470.aspx .

Assuming that you are on a later version, there are a couple of options I can see:

1) Migrate from Access to SQL Server Express and use replication.

2) Create an SSIS package(s) to import the data. The package(s) can be scheduled in SQL Server Agent run to periodically load the data.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM