Length of LOB data (78862) to be replicated exceeds configured maximum 65536

37,853

Solution 1

Are you using Change Data Capture?

From How to: Configure the max text repl size Option (SQL Server Management Studio)

This option applies to transactional replication and Change Data Capture

Solution 2

The following steps should be performed:

  1. Go to SQL Server management Studio
  2. Right-click a server and select Properties
  3. Select Properties
  4. Go to advanced page
  5. Change the max text replication size to any value you want

Solution 3

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

Share:
37,853
ram
Author by

ram

Updated on July 25, 2022

Comments

  • ram
    ram almost 2 years

    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