Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
nkpriya
Starting Member
34 Posts |
Posted - 2013-12-15 : 00:36:32
|
Is there anyway, we can link MS Access to SQL Server tables. I have data in MS Access and I want to link it to SQL Server tables, so whenever there is change in data in MS Access, SQL Server tables should update it automatically or we should be able to schedule it.Please advise. Thanks! |
|
Mar
Starting Member
47 Posts |
Posted - 2014-01-14 : 07:41:59
|
What you can do is link the SQL server tables to Access. Then create a function which updates both tables. |
|
|
chudman2
Starting Member
5 Posts |
Posted - 2014-01-14 : 10:07:03
|
You could use the Microsoft Access Migration Wizard tool, which can be downloaded from the web. This will migrate all data to SQL Server, and the data will officially reside within the SQL Database. All tables can be linked from Access. This will do several things for you: It will remove the 2 gig limit in database size that Access imposes, and it will allow you to use the more robust tools within SQL server for backups and maintenance of indexing.All updates to data within Access will occur within the SQL database. You will also be able to update data from within SQL server.There are many caveats when using the upgrade wizard: most of them deal with conversion of datatypes, syntax of queries, and renaming of access objects that have spaces in the names. If you want to keep the access data and SQL data separate, you will have to use pass-through queries to keep performance up on the SQL server. Without using pass-through queries, Access is notorious for the way it handles query execution against SQL server and transfers data back and forth.Jeff BennettSQL DBASaint Louis, Missouri |
|
|
|
|
|