SQL Server Replication, Consolidation -


How do I consolidate more than one publication into a consolidated table on a customer? for example. Consider a very simple selling model, where we copy sales data from stores to the central office.

  Store 1 Sales Table ===================== Item Amount AMT ============ ========= 111 2 10.00 222 1 7.00 333 1 12.00 Store 2 Sales Table ==================== Item Item AMT ==== ==================================== I publish these two sales publications from the publisher to a consolidated sale on the consumer How to create in the table:  
  Central Office ============================= Store item quantity 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 the "Existing table unchanged" default drop and restart.

Fast search, old example but seems valid ->


Comments

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -