Hello,
I'm using transactional replication in SQL Server 2012. Is it possible to replicate user-defined data types by adding a new column in the replicated table?
For example:
There are custom data types Datatype_1 (varchar (10)).
After adding a column with:
alter table Table_name
add test_coll Datatype_1 null
go
As a result, we have:
Publisher DB
column_name Type
test_coll Datatype_1
Subscriber DB
column_name Type
test_coll varchar
Option "Convert data types" in article properties is set to "false".