网上转来的,sql server设置同步后,text类型字段只能保存长度少于65536的字符串

错误提示:要复制的   text、ntext   或   image   数据的长度(327671)超过了所配置的最大长度   65536。  

解决: 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    

你可能感兴趣的:(SQL Server)