SQL server 2005 数据库间复制因Image大小限制而出错的问题

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

posted @ 2011-01-20 21:59  数据库天地  阅读(629)  评论(0)    收藏  举报