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 text

table 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

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -