自己解决了
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