要复制的 LOB 数据长度 (78862) 超过配置的最大值 65536
这里是一个相关的问题。
即使我没有安装 SQL Server 复制,为什么也会收到此错误?最奇怪的是,当我运行修复程序时,
sp_configure 'max text repl size', 2147483647
Go
RECONFIGURE
GO
它起作用了,并且不再出现此错误
Here is a related question.
Why do I get this error even when I have not installed SQL Server replication ? The strangest thing is, when I run the fix
sp_configure 'max text repl size', 2147483647
Go
RECONFIGURE
GO
it works and I no longer get this error
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您正在使用变更数据捕获吗?
来自如何:配置最大文本重复大小选项 (SQL Server Management Studio)
Are you using Change Data Capture?
From How to: Configure the max text repl size Option (SQL Server Management Studio)
应执行以下步骤:
The following steps should be performed:
转到 Management Studio,然后按照以下步骤
操作 右键单击服务器 ->属性->高级选项卡->杂项 ->将最大文本复制大小更改为 (-1) ->单击“确定”
Go to Management Studio then follow below steps
Right-clicking the server -> Properties -> Advanced tab -> Miscellaneous -> Change Max Text Replication Size to (-1) -> Click OK