没有筛选器列的表未在Microsoft同步框架中同步

时间:2013-06-19 14:49:13

标签: c# sql-server microsoft-sync-framework

关于Microsoft同步框架的问题

我的同步范围内有一些表,其中一些表有过滤器“UserId”,4个表没有过滤器。

在“无过滤器”表中,一个正常工作并且正在同步,但新添加的表中的3个未同步

以下是我的配置文件

没有过滤器的ContactStatus,ContactAction,ContactActionRule表没有得到同步,但我没有收到任何错误。

但与此同时,也没有过滤器的设置表正在同步。 我知道这很难调试,但如果你们有任何想法,请告诉我。

这就是我点击服务的方式

的https:AnzuReaderSyncSyncService.svc / ARSync / DownloadChanges fk_user_id = 1902

 <SyncConfiguration>
        <SyncScopes>
          <SyncScope Name="ARSync" SchemaName="dbo" IsTemplateScope="true" EnableBulkApplyProcedures="true">
            <SyncTables>
              <SyncTable Name="[ContactStatus]" GlobalName="ContactStatus" SchemaName="" IncludeAllColumns="true" FilterClause="">
                <SyncColumns>
                  <SyncColumn Name="Id" GlobalName="Id" SqlType="int" IsPrimaryKey="true" IsNullable="false" />
                  <SyncColumn Name="StatusName" GlobalName="StatusName" SqlType="varchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateAdded" GlobalName="DateAdded" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateUpdated" GlobalName="DateUpdated" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="LastUpdatedBy" GlobalName="LastUpdatedBy" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DeleteMark" GlobalName="DeleteMark" SqlType="bit" IsPrimaryKey="false" IsNullable="true" />
                </SyncColumns>
              </SyncTable>
              <SyncTable Name="[ContactAction]" GlobalName="ContactAction" SchemaName="" IncludeAllColumns="true" FilterClause="">
                <SyncColumns>
                  <SyncColumn Name="Id" GlobalName="Id" SqlType="int" IsPrimaryKey="true" IsNullable="false" />
                  <SyncColumn Name="Action" GlobalName="Action" SqlType="varchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateAdded" GlobalName="DateAdded" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateUpdated" GlobalName="DateUpdated" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="LastUpdatedBy" GlobalName="LastUpdatedBy" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                </SyncColumns>
              </SyncTable>
              <SyncTable Name="[ContactActionRule]" GlobalName="ContactActionRule" SchemaName="" IncludeAllColumns="true" FilterClause="">
                <SyncColumns>
                  <SyncColumn Name="Id" GlobalName="Id" SqlType="int" IsPrimaryKey="true" IsNullable="false" />
                  <SyncColumn Name="FK_ContactAction_Id" GlobalName="FK_ContactAction_Id" SqlType="int" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="FK_OriginalState_Id" GlobalName="FK_OriginalState_Id" SqlType="int" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="FK_SenderState_Id" GlobalName="FK_SenderState_Id" SqlType="int" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="FK_ContactState_Id" GlobalName="FK_ContactState_Id" SqlType="int" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="DateAdded" GlobalName="DateAdded" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateUpdated" GlobalName="DateUpdated" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="LastUpdatedBy" GlobalName="LastUpdatedBy" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                </SyncColumns>
              </SyncTable>
              <SyncTable Name="[UserLibrary]" GlobalName="UserLibrary" SchemaName="" IncludeAllColumns="true" FilterClause="[side].FK_User_Id = @FK_User_Id">
                <SyncColumns>
                  <SyncColumn Name="Id" GlobalName="Id" SqlType="uniqueidentifier" IsPrimaryKey="true" IsNullable="false" />
                  <SyncColumn Name="Name" GlobalName="Name" SqlType="varchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="Description" GlobalName="Description" SqlType="nvarchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="FK_User_Id" GlobalName="FK_User_Id" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="ParentId" GlobalName="ParentId" SqlType="uniqueidentifier" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="SequenceNo" GlobalName="SequenceNo" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="IsRecycled" GlobalName="IsRecycled" SqlType="bit" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateAdded" GlobalName="DateAdded" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="LastUpdatedBy" GlobalName="LastUpdatedBy" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateUpdated" GlobalName="DateUpdated" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                </SyncColumns>
                <FilterColumns>
                  <FilterColumn Name="FK_User_Id" />
                </FilterColumns>
                <FilterParameters>
                  <FilterParameter Name="@FK_User_Id" SqlType="int" DataSize="0" />
                </FilterParameters>
              </SyncTable>

              <SyncTable Name="[Discussion]" GlobalName="Discussion" SchemaName="" IncludeAllColumns="true" FilterClause="[side].FK_User_Id = @FK_User_Id">
                <SyncColumns>
                  <SyncColumn Name="Id" GlobalName="Id" SqlType="int" IsPrimaryKey="true" IsNullable="false" />
                  <SyncColumn Name="ParentId" GlobalName="ParentId" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="FK_User_Id" GlobalName="FK_User_Id" SqlType="int" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="FK_Application_Id" GlobalName="FK_Application_Id" SqlType="int" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="Title" GlobalName="Title" SqlType="varchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="Description" GlobalName="Description" SqlType="nvarchar" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="Tag" GlobalName="Tag" SqlType="varchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="FK_DomainLibrary_Id" GlobalName="FK_DomainLibrary_Id" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="FK_Publication_Id" GlobalName="FK_Publication_Id" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="FK_ContentType_Id" GlobalName="FK_ContentType_Id" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="FK_Category_Id" GlobalName="FK_Category_Id" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="FK_SubCategory_Id" GlobalName="FK_SubCategory_Id" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="PageNumber" GlobalName="PageNumber" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="Text" GlobalName="Text" SqlType="nvarchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="TimeFrame" GlobalName="TimeFrame" SqlType="float" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="PositionMatrix" GlobalName="PositionMatrix" SqlType="text" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="ChapterNumber" GlobalName="ChapterNumber" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DeleteMark" GlobalName="DeleteMark" SqlType="bit" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateAdded" GlobalName="DateAdded" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateUpdated" GlobalName="DateUpdated" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="LastUpdatedBy" GlobalName="LastUpdatedBy" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="PubDBContentId" GlobalName="PubDBContentId" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="Url" GlobalName="Url" SqlType="varchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="ChildCount" GlobalName="ChildCount" SqlType="int" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="RootId" GlobalName="RootId" SqlType="int" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="FK_Content_Id" GlobalName="FK_Content_Id" SqlType="uniqueidentifier" IsPrimaryKey="false" IsNullable="true" />
                </SyncColumns>
                <FilterColumns>
                  <FilterColumn Name="FK_User_Id" />
                </FilterColumns>
                <FilterParameters>
                  <FilterParameter Name="@FK_User_Id" SqlType="int" DataSize="0" />
                </FilterParameters>
              </SyncTable>

              <SyncTable Name="[Settings]" GlobalName="Settings" SchemaName="" IncludeAllColumns="true" FilterClause="">
                <SyncColumns>
                  <SyncColumn Name="Id" GlobalName="Id" SqlType="int" IsPrimaryKey="true" IsNullable="false" />
                  <SyncColumn Name="Key" GlobalName="Key" SqlType="varchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="Title" GlobalName="Title" SqlType="nchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DefaultValue" GlobalName="DefaultValue" SqlType="varchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="Description" GlobalName="Description" SqlType="varchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="Type" GlobalName="Type" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateAdded" GlobalName="DateAdded" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateUpdated" GlobalName="DateUpdated" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                </SyncColumns>
              </SyncTable>

              <SyncTable Name="[UserContact]" GlobalName="UserContact" SchemaName="" IncludeAllColumns="true" FilterClause="[side].SenderId = @FK_User_Id">
                <SyncColumns>
                  <SyncColumn Name="Id" GlobalName="Id" SqlType="int" IsPrimaryKey="true" IsNullable="false" />
                  <SyncColumn Name="SenderId" GlobalName="SenderId" SqlType="int" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="ContactId" GlobalName="ContactId" SqlType="int" IsPrimaryKey="false" IsNullable="false" />
                  <SyncColumn Name="FK_ContactStatus_Id" GlobalName="FK_ContactStatus_Id" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="ContactName" GlobalName="ContactName" SqlType="varchar" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="Follows" GlobalName="Follows" SqlType="bit" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateAdded" GlobalName="DateAdded" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="DateUpdated" GlobalName="DateUpdated" SqlType="datetime" IsPrimaryKey="false" IsNullable="true" />
                  <SyncColumn Name="LastUpdatedBy" GlobalName="LastUpdatedBy" SqlType="int" IsPrimaryKey="false" IsNullable="true" />
                </SyncColumns>
                <FilterColumns>
                  <FilterColumn Name="SenderId" />
                </FilterColumns>
                <FilterParameters>
                  <FilterParameter Name="@FK_User_Id" SqlType="int" DataSize="0" />
                </FilterParameters>
              </SyncTable> 
          </SyncScope>
        </SyncScopes>
        <Databases>
          <TargetDatabase Name="ARSyncDB" DbServer="50.56.173.145" DbName="ARDevDB2.0Sync" UserName="sabeta" Password="sa123$" UseIntegratedAuth="false" />
        </Databases>
      </SyncConfiguration>

1 个答案:

答案 0 :(得分:0)

启用同步fx跟踪或sql profiler以查看幕后发生了什么。您还可以检查可能阻止更改被应用的冲突或约束(尤其是FK)。