when insert length of lob data to be replicated exceeds configured maximum 65536 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T14:16:40Z http://stackoverflow.com/feeds/question/925824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/925824/when-insert-length-of-lob-data-to-be-replicated-exceeds-configured-maximum-65536 0 when insert length of lob data to be replicated exceeds configured maximum 65536 gopal 2009-05-29T12:55:14Z 2009-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#925858 1 Answer by Garry Shutler for when insert length of lob data to be replicated exceeds configured maximum 65536 Garry Shutler 2009-05-29T13:06:05Z 2009-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>