自己解决了
Microsoft Sql Server 2000 对于image类型进行复制的大小默认限制为65KB,如果超过大小,则复制失败。以下把大小限制更改为2MB 
use [数据库名] 
exec sp_config 'show advanced option','1' 
reconfigure 
exec sp_configure 
-- 查看系统配置 
-- 更改max text repl size(B), 默认65536 (65KB) 
-- 更改max text repl size(B), 65535 ->2097152 (2MB) 
use [数据库名] 
exec sp_configure 'max text repl size(B)','2097152' 
reconfigure 
exec sp_configure 
 

解决方案 »

  1.   

    写得不错,但有几个地方不对,但exec sp_config 'show advanced option','1' 执行不了,因为sp_config 不正确,下面是我配置的:
    use center
    exec sp_configure 'show advanced option','1' 
    reconfigure 
    exec sp_configure 
    exec sp_configure 'max text repl size (B)','2147483647' --设置同步的最大值
    reconfigure 
    exec sp_configure
      

  2.   

    写得不错,但有几个地方不对,但exec sp_config 'show advanced option','1' 执行不了,因为sp_config 不正确,下面是我配置的:
    use center
    exec sp_configure 'show advanced option','1' 
    reconfigure 
    exec sp_configure 
    exec sp_configure 'max text repl size (B)','2147483647' --设置同步的最大值
    reconfigure 
    exec sp_configure