---solution---
Using script to query the repl config as below:
SELECT * FROM sys.configurations WHERE NAME LIKE'%repl%'
Using script update the repl config as below:
sp_configure 'max text repl size', 483647
reconfigure with override
---solution---
Using script to query the repl config as below:
SELECT * FROM sys.configurations WHERE NAME LIKE'%repl%'
Using script update the repl config as below:
sp_configure 'max text repl size', 483647
reconfigure with override
转载于:https://www.cnblogs.com/vincentDr/archive/2013/02/27/2935200.html