select
   FiscalMonthID = (select FiscalMonthID from CurrentFiscalMonth (nolock)),
   T.OrgKey,
   DataSourceKey = 26,
   OrganizationTypeKey = 2,
   SourceSystemID = MAX(T.MbsId),
   WEGFlag = convert(bit,0),
   D.CreateDT,
   D.CreateBy,
   D.UpdateDT,
   D.UpdateBy

from WorkDB.dbo.TempMbsOrgMap (nolock) as T
join WorkDB.dbo.MBSOrganization_Denorm2 (nolock) as D
      on T.MbsId = D.OrganizationID
--where OrgKey not in (select OrgKey from OrgMap where FiscalMonthID=258 and DataSourceKey=26 and OrganizationTypeKey=2)
group by
   T.OrgKey,
   D.CreateDT,
   D.CreateBy,
   D.UpdateDT,
   D.UpdateBy

最佳答案

我不知道这个人是否曾经解决过这个问题。如果有人遇到此错误,到目前为止,我发现最有帮助的文章是:
http://blogs.msdn.com/b/sqlserverfaq/archive/2009/11/04/s.aspx

文章中的建议(尽管值得一读)如下:


以下是您可以尝试的一些行动计划,这对我而言很有帮助
虽然。

1)在BCP运行之前删除约束,并在BCP运行之后重新创建约束


2)禁用自动更新统计信息(以找出问题)

3)检查是否发生任何并行索引重建。

如果实施上述更改后问题仍然存在,
收集Profiler跟踪以捕获bcp失败时的活动
有待进一步调查。

10-07 15:58