I have a merge replication setup and all worked fine.
After some schema changes I encountered a "bit" schema error which I fixed on 2 Replications, but for some reason I keep on encountering the following on 2 other replications.
It connects and then "hangs" on Retrieving Subscriber info, after some time the standard no response for 10 minutes error comes up, but when I check the replication monitor I found this error:
The schema script ' if exists (select * from syscolumns where name = N'Active' and id = object_id(N'[dbo].[FleetData]')) if object_id(N'[dbo].[FleetData]') is not null exec('ALTER TABLE [dbo].[FleetData] Alter Column Active BIT Null')' could not be propagated to the subscriber. (Source: MSSQL_REPL, Error number: MSSQL_REPL-2147201001) Conversion failed when converting the nvarchar value 'ACTIVE' to data type tinyint. (Source: MSSQLServer, Error number: 245) Get help: http://help/245
But Both Schemas referred to in the error are NVARCHAR.
How would I search the cause of this?