SQL Server Replication by column mapping -
is possible use sql server's replication service replicate table on given server 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 copy "name" table table b given id.
it possible choose specific columns within table article data, however, i'm not sure if possible map data on subscription side.
replication services interested in issue, however, in getting lost in nice tool, overlooked simpler solution.
for reference, solution ended going scheduling stored procedure job, continually updates given data set.
Comments
Post a Comment