How to Fix REPQUEUE Max Test REPL Size

Description of Issue:

The following error is received while running a report:

Capture1.PNG

Fixes:

Run this script on the Manitou db, need to run the reconfigure of the max text repl size in the primary and standby database(s).

This will give you the current size

sp_configure 'max text repl size'

Capture2.PNG

This will set the new value

sp_configure 'max test repl size'.2147483647

Capture3.PNG

This will set the current run value

reconfigure

go

Capture4.PNG

Then check the value to ensure that it is set

sp_configure 'max text repl size'

Capture5.PNG

Script to Use:

/* FIX MAX TEXT REPL SIZE SCRIPT    */

-- This will give you the current size

sp_configure 'max text repl size'

-- This will set the new value

sp_configure 'max text repl size', 2147483647

-- This will set the current run value

reconfigure

go

-- Then check the value to ensure that it is set

sp_configure 'max text repl size'

Was this article helpful?
Thank you for your feedback!
User Icon

Thank you! Your comment has been submitted for approval.