We are running SQL Server 2008 R2 SP1 as publisher & distributor, and SQL Server 2005 SP3 as subscriber. The replication of schema changes is activated, and the replication has been running for years, including frequent schema changes (new column, new constraints, etc).
The following instruction was sent on the publisher:
use myDatabase
alter table Tbl_TypeLignePaye
alter column natureTypeLignePaye nvarchar(12)
go
where field natureTypeLignePaye
was originally nvarchar(3) null
The query ran without errors on the main database. The result is the following:
- The field natureTypeLignePaye still appears as
nvarchar(3)
in the object browser - The column properties screen indicates a
nvarchar
type with a length of12
- The change was not propagated to the subscribers
Any idea on what is going on with this database?
Publisher: object browser window vs property window give incoherent data