FIX: Replication in Turkish Collation Fails with Error Message: "Error 21112: '-PollingInterval' is not a valid parameter for the Log Reader Agent" (295325)



The information in this article applies to:

  • Microsoft SQL Server 2000 (all editions)

This article was previously published under Q295325
BUG #: 351337 (SHILOH_BUGS)

SYMPTOMS

When you try to configure a Distributor, the following error message occurs:
SQL Server Enterprise Manager could not configure 'TESTSERVER' as the Distributor for 'TESTSERVER'. Error 21112: '-PollingInterval' is not a valid parameter for the Log Reader Agent

CAUSE

With a Turkish collation or code page, a lower case "I" yields an undotted "i" unlike the Latin lower case dotted "i".

When you configure the Distributor, the sp_MSvalidate_agent_parameter stored procedure checks to see if the parameter passed is "pollinginterval" (with a dotted "i"). When you apply the Lower function to the string
 
Lower('PollingInterval')
				
the capital "I" in the "PollingInterval" string returns the string "pollinginterval" with an undotted "i", which is not equal to the string "pollinginterval" with a dotted i. Therefore, an error message occurs that states -PollingInterval is not a valid parameter. Because the strings do not match, replication fails on any server with a Turkish collation.

RESOLUTION

To resolve this problem, obtain the latest service pack for SQL Server 2000. For additional information, click the following article number to view the article in the Microsoft Knowledge Base:

290211 INF: How to Obtain the Latest SQL Server 2000 Service Pack

STATUS

Microsoft has confirmed that this is a problem in SQL Server 2000. This problem was first corrected in SQL Server 2000 Service Pack 1.

MORE INFORMATION

If you use Transact-SQL to configure the Distributor, the error message that occurs is:
Server: Msg 21112, Level 16, State 1, Procedure sp_MSvalidate_agent_parameter, Line 72 '-PollingInterval' is not a valid parameter for the Log Reader Agent.

Modification Type:MajorLast Reviewed:11/5/2003
Keywords:kbBug kbfix kbSQLServ2000sp1fix KB295325