when insert length of lob data to be replicated exceeds configured maximum 65536 - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T14:16:40Zhttp://stackoverflow.com/feeds/question/925824http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/925824/when-insert-length-of-lob-data-to-be-replicated-exceeds-configured-maximum-655360when insert length of lob data to be replicated exceeds configured maximum 65536gopal2009-05-29T12:55:14Z2009-05-29T13:06:05Z
<p>Hi,</p>
<p>I am trying to insert value for the column of datatype image in sql server. I am getting the following error</p>
<blockquote>
<p>{"Length of LOB data (70823) to be replicated exceeds configured maximum 65536.<br />
The statement has been terminated."}
.</p>
</blockquote>
<p>The data length is less than 2 MB.</p>
<p>What is the problem?</p>
<p>Thanks, P.Gopalakrishnan.</p>
http://stackoverflow.com/questions/925824/when-insert-length-of-lob-data-to-be-replicated-exceeds-configured-maximum-65536/925858#9258581Answer by Garry Shutler for when insert length of lob data to be replicated exceeds configured maximum 65536Garry Shutler2009-05-29T13:06:05Z2009-05-29T13:06:05Z<p>You can run:</p>
<pre><code>sp_configure 'max text repl size', 2147483647
</code></pre>
<p>This will up the maximum size, letting the large LOBs be replicated.</p>