vote up 0 vote down star

Hi,

I am trying to insert value for the 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?

Thanks, P.Gopalakrishnan.

flag

17% accept rate
I am getting this error in asp.net application. – gopal May 29 at 12:57

1 Answer

vote up 1 vote down

You can run:

sp_configure 'max text repl size', 2147483647

This will up the maximum size, letting the large LOBs be replicated.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.