同步服务可以在中央表上添加列吗?

发布于 2024-11-01 11:22:23 字数 194 浏览 4 评论 0原文

是否可以让 ADO.NET 同步服务从多个设备上的表中读取数据并将其插入到中央 SQL Server 中,并在中央表中增加一个包含行数据来源的列?

假设我为上门销售人员配备了一台设备,用于登记销售情况。本地表将包含包含销售信息的行,而中央数据库将包含相同的数据+包含销售人员 ID 的列。

这可能吗,还是我也需要本地数据库中销售人员的 ID?

Is it possible to have Sync Services for ADO.NET read data from a table on multiple devices and insert it into a central SQL Server, having an additional column in the central table with the origin of the row data?

Let's say I have equipped door-to-door sales people with a device where they register sales. The local table would contain rows with sales information, and the central database would contain the same data + a column with the ID of the sales person.

Is that possible, or would I need the sales person's ID in the local database too?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苄①跕圉湢 2024-11-08 11:22:23

Sync Framework identifies each client with a GUID (see: How To:Use Session Variables) and you can use that to map a particular client to a particular salesperson (see:Identifying Which Client Made a Data Change on either How to: Use Custom Change Tracking System or How to: Use SQL Server Change Tracking.

Or try the approach here for intercepting the change dataset and inserting/substituting the salesperson value: Part 1 – Upload Synchronization where the Client and Server Primary Keys are different

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文