MSSQLCity.Com - All about MS SQL
     
About Us  
SSWUG Articles  
Articles  
FAQ  
Administration  
Backup/Restore  
Connectivity  
Development  
General  
Installation  
OLAP  
Replication  
Transfer/move  
Trouble  
SQL 6.5  
Scripts  
Tips  
Test Exams  
Advertise  
Download  
History  
Search  
Traffic  
Related Links  
     
Your button logo
Add to Favorites
 
     
 


Some of my text/image values were not replicated. What is the problem?

Answer:

There is max text repl size server option. This option is used to specify the maximum size (in bytes) of text and image data that can be replicated. The default value for this parameter is 65536 bytes.
So, if the size of the text/image data is more than 65536 bytes, this data will not be replicated (if 'max text repl size' option = 65536 bytes). You can change this option by using the sp_configure system stored procedure.

This is the example to set the max text repl size to 128Kb:

sp_configure 'max text repl size', 131072
GO
RECONFIGURE WITH OVERRIDE
GO

 

 
Visit The SQL Server Worldwide User's Group for all the latest news and information about SQL Server, Oracle, DB2 and XML for developers and administrators.

(c) 1997, 2005 Bits on the Wire, Inc