Microsoft Sql Server 2005 对于image类型进行复制的大小默认限制为65KB,如果超过大小,则复制失败。以下把大小限制更改为2MB

use [数据库名]
exec sp_configure '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','2097152'
reconfigure
exec sp_configure

相关文章:

  • 2021-06-04
  • 2022-12-23
  • 2021-04-25
  • 2022-12-23
  • 2022-12-23
  • 2021-08-31
  • 2021-12-08
猜你喜欢
  • 2022-12-23
  • 2021-07-04
  • 2021-12-21
  • 2022-12-23
  • 2021-08-20
  • 2021-11-19
相关资源
相似解决方案