Update SQL Server table with local data

社会主义新天地 提交于 2019-12-02 13:23:19

问题


I have a project to create an application in Access 2010 that will use a local table to collect data with a tablet (that does not have wireless where data is being collected from) and then when they get back to location that has wireless connectivity to be able to upload the data.

I have the SQL Server database and tables. Designed the application using linked tables, then converted them to local tables, so I know the design is the same on both.

What is the simplest way to update the sql server tables with the info from the local tables?


回答1:


Probably the most straightforward approach would be to keep the linked tables in the Access application so you would have both local tables (e.g., [Stuff]) and linked tables (e.g. [dbo_Stuff]). When the network connection is available you could use Append queries and/or Update queries to copy the data from the local tables to the linked tables.



来源:https://stackoverflow.com/questions/26220389/update-sql-server-table-with-local-data

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!