Is it possible to use SQL Server's replication service to replicate from table A on a given server to a different schema on table B?
ie,
Table A
----------
ID int
Name varchar(20)
Data textTable B
----------
ID int
Name varchar(20)
Description varchar(10)
Replication would copy "Name" from table A to table B for a given ID.
It is possible to choose specific columns within a table as article data, however, I'm not sure if it is possible to then map that data on the subscription side.