简体   繁体   English

Sync Framework,如何从只读数据库视图下载?

[英]Sync Framework, how to download from a read only database view?

My Server Provision (source) is a read only database, how can I download/sync from it to another database without needing the synchronization tables? 我的服务器配置(源)是一个只读数据库,如何在不需要同步表的情况下将其下载/同步到另一个数据库?

Also the read only have another table schema called DW_Gen while the client which is the destination have dbo. 只读的还有另一个称为DW_Gen的表模式,而作为目标的客户端则具有dbo。 By the way the read only table is a view. 顺便说一下,只读表是一个视图。

I got full access to the destination database. 我拥有对目标数据库的完全访问权限。

Sync Fx needs to track the changes on the source database. Sync Fx需要跟踪源数据库上的更改。 the older provider can use SQL Change Tracking, the newer ones uses its own change tracking tables. 较旧的提供程序可以使用SQL更改跟踪,而较新的提供程序可以使用其自己的更改跟踪表。 without the change tracking, it wont know what has changed. 没有变更跟踪,它将不会知道发生了什么变化。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何实现数据库快速同步。 与只读源? - How to achieve fast database sync. with a read-only source? 使用数据库中的更新模型添加只读视图 - Adding a Read-Only View using Update Model from database 如何仅同步数据库中的某些行 - How to sync only certain rows in a database 使用 Entity Framework 6.1 和 MVC 5 从数据库使用 Code First 后如何同步模型? - How to sync model after using Code First from Database using Entity Framework 6.1 and MVC 5? 使用Entity Framework将视图中的字段映射到我的模型并将其设置为只读 - Mapping a field from a view to my model using Entity Framework and setting it as read only 如何仅使用数据库中的实体框架支架模型 - How to work only with the Entity Framework Scaffolded Models from Database 当我从现有数据库创建模型时,Entity Framework 4.0 生成只读模型 - Entity Framework 4.0 generating read only model when I create model from existing database 如何清除Sync Framework客户端数据库表中的筛选数据 - How to purge filtered data in Sync Framework client database tables 如何使用Microsoft Sync Framework在客户端数据库中插入新行 - How to insert new row in client database using Microsoft Sync Framework 如何使用同步框架同步同一数据库中的2个表? - How can I synchronize 2 tables in same database by using sync framework?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM