开发者

SQL Server Replication, Consolidation

开发者 https://www.devze.com 2022-12-13 05:01 出处:网络
How do I consolidate multiple publications into 1 consolidated table on the subscriber? For example. Consider a very simple sales model where 开发者_如何学JAVAwe replicate sales data from the stores t

How do I consolidate multiple publications into 1 consolidated table on the subscriber? For example. Consider a very simple sales model where 开发者_如何学JAVAwe replicate sales data from the stores to the central office.

Store 1 Sales Table  
=====================  
Item     Qty      Amt  
=====================  
111       2     10.00  
222       1      7.00  
333       1     12.00  

Store 2 Sales Table
=====================
Item     Qty      Amt
=====================
111       2     18.00
222       1     13.00
333       1      4.00

How do I replicate these two sales publications from the publisher to ONE consolidated sales table at the subscriber:

Central Office
==============================
Store   Item     Qty       Amt
==============================
1        111       2     10.00
1        222       1      7.00
1        333       1     12.00
2        111       2     18.00
2        222       1     13.00
2        333       1      4.00


Use "Keep the existing table unchanged", default is drop and recreate.

Fast search, old example but seems valid -> sql preformance

0

精彩评论

暂无评论...
验证码 换一张
取 消