当要复制的 lob 数据的插入长度超过配置的最大值 65536 时

发布于 2024-07-22 00:53:13 字数 232 浏览 1 评论 0原文

我正在尝试将一个值插入到 SQL Server 中的数据类型图像列中。 我收到以下错误:

Length of LOB data (70823) to be replicated exceeds configured maximum 65536.  
The statement has been terminated.

数据长度小于 2 MB。

问题是什么?

I am trying to insert a value into a column of datatype image in SQL Server. I am getting the following error:

Length of LOB data (70823) to be replicated exceeds configured maximum 65536.  
The statement has been terminated.

The data length is less than 2 MB.

What is the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笔芯 2024-07-29 00:53:13

对于 SQL Server 2005 或更早版本,您可以运行:

sp_configure 'max text repl size', 2147483647

对于 SQL Server 2008 或更高版本,您可以运行:

sp_configure 'max text repl size', -1

前者增加了允许的最大大小,后者本质上是“删除限制”。 一旦增加或删除了最大大小,就可以复制大型 LOB。

For SQL Server 2005 or earlier you can run:

sp_configure 'max text repl size', 2147483647

For SQL Server 2008 or later you can run:

sp_configure 'max text repl size', -1

The former increases the maximum size allowed, the latter essentially says "remove the limit". Once the maximum size is increased or removed, large LOBs will be able to be replicated.

走过海棠暮 2024-07-29 00:53:13

作为替代方案,您可以通过 SQL Server Management Studio 参考配置最大文本复制大小选项

http://msdn.microsoft.com/en-us/library/ms179573.aspx

配置最大文本重复大小选项
1. 在对象资源管理器中,右键单击服务器并选择属性。
2. 单击“高级”节点。
3. 在“其他”下,将“最大文本复制大小”选项更改为所需的值。

我已经在 SQL Server 2012 中对其进行了测试,但是从前面的链接您可以查看 2005 和 2008 的说明,它们是相同的。

As an alternative, you can configure the max text replication size option via SQL Server Management Studio

Reference: http://msdn.microsoft.com/en-us/library/ms179573.aspx

To configure the max text repl size option
1. In Object Explorer, right-click a server and select Properties.
2. Click the Advanced node.
3. Under Miscellaneous, change the Max Text Replication Size option to the desired value.

I've tested it in SQL Server 2012, but from the previous link you can view the instructions for 2005 and 2008 which are the same.

把时间冻结 2024-07-29 00:53:13

不要忘记在运行 sp_configure 后运行 RECONFIGURE 以便您的更改生效

Don't forget to run RECONFIGURE after running sp_configure so that your changes can take effect

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文