Click here to Skip to main content
15,867,568 members
Articles / Database Development / SQL Server

SQL Server Replication Step by Step

Rate me:
Please Sign up or sign in to vote.
4.79/5 (66 votes)
27 Jan 2014CPOL9 min read 591.1K   69   24
This article describes SQL Server Replication

Introduction

Earlier, most of the applications were using standalone environment where a single centralized server was responding to multiple users, working in different locations.

Centralized Approach and Problems

  • Performance problems
  • Availability problems
  • Maintenance problems

To overcome all the above problems, we can use replication solution.

Replication allows to maintain same database multiple copies at different locations. Log shipping and mirroring allows to maintain complete database redundancy whereas replication allows to maintain some part of the database (a set of required objects) at users location. Changes made at different user locations are synchronized to the main server. It is object level high availability feature. According to Books Online:

Replication is a set of technologies for copying and distributing data and database objects from one database to another and then synchronizing between databases to maintain consistency.

Unlike other methods of high availability, it doesn’t distribute entire database, but only distributes some part of database like tables or views.

Advantages

  • Improved performance
  • To reduce locking conflicts when multiple users are working
  • Improved availability
  • Easy maintenance
  • To allow sites work independently. So that each location can set up its own rules and procedures for working with its copy of the data.
  • To move data closer to the user

SQL Server 2005 Features

  • Restartable Snapshots
  • Oracle Publishing
  • Replicating all DDLs
  • Merge Replication allows to introduce custom business logic into the synchronization process
  • Merge Replication provides the ability to replicate data over HTTP with web synchronization option
  • Updatable Transactional Subscriptions can now handle updates to large data types at Subscribers

SQL Server 2008 Features

  • In SQL Server 2005, replication had to be stopped in order to perform some actions like adding nodes, making schema changes, etc. But in 2008, these can be done online.
  • Conflict detection capacity in peer-to-peer replication.
  • All types of conflicts are detected and reported through agent error log or conflicts table.
  • In SQL Server 2005, switch partition is unsupported, but in 2008 it supports.
    • @allow_partition_switch
    • @replicate_partition_switch
  • Performance improvements, under Windows 2008
    • Snapshot delivery of more than 500MB/minute
    • Time to deliver 100000 varbinary(max) records in less than 2minutes where in 2005 223 minutes.

SQL Server 2012 Features

  • Updatable subscriptions with transactional publications are discontinued.
  • Four new stored procedures provide replication support for AlwaysOn.
    • sp_get_redirected_publisher
    • sp_redirect_publisher
    • sp_validate_replica_hosts_as_publishers
    • sp_validate_redirected_publisher
  • Replication supports the following features on Availability groups:
    • A publication database can be part of an availability group. The publisher instances must share a common distributor.
    • In an AlwaysOn Availability Group, an AlwaysOn secondary cannot be a publisher. Republishing is not supported when replication is combined with AlwaysOn.
    • Heterogeneous replication to non-SQL Server subscribers is deprecated. To move data, create solutions using change data capture and SSIS.
    • Oracle Publishing is deprecated.

Replication Architecture

Image 1

REPLICATION ENTITIES

SQL Server replication is based on the “Publish and Subscribe” metaphor. Let us look at each of the individual components in detail.

  1. Publisher
    • It is a source database where replication starts. It makes data available for replication.
    • Publishers define what they publish through a publication.
  2. Article
    • Articles are the actual database objects included in replication like tables, views, indexes, etc.
    • An article can be filtered when sent to the subscriber.
  3. Publication
    • A group of articles is called publication.
    • An article can’t be distributed individually. Hence publication is required.
  4. Distributor
    • It is intermediary between publisher and subscriber.
    • It receives published transactions or snapshots and then stores and forwards these publications to the subscriber.
    • It has 6 system databases including distribution.
  5. Subscriber
    • It is the destination database where replication ends.
    • It can subscribe to multiple publications from multiple publishers.
    • It can send data back to publisher or publish data to other subscribers.
  6. Subscription
    • It is a request by a subscriber to receive a publication.
    • We have two types of subscriptions - push and pull.
  7. Push Subscriptions
    • With this subscription, the publisher is responsible for updating all the changes to the subscriber without the subscriber asking those changes.
    • Push subscriptions are created at the Publisher server
  8. Pull Subscriptions -
    • With this subscription the subscriber initiates the replication instead of the publisher.
    • The subscriptions are created at the Subscriber server.

REPLICATION AGENTS

  • We have discussed that replication process works in the background with the help of jobs.
  • These jobs are also called as agents. These jobs internally uses respective .exe files present in …………….. \110\COM folder.
  • All the agents information is present in Distribution db in the following tables.
    • dbo.MSxxx_agents
    • dbo.MSxxx_history

Snapshot Agent

  • It is an executable file that prepares snapshot files containing schema and data of published tables and db objects.
  • It stores the files in the snapshot folder, and records synchronization jobs in the distribution database.

Distribution Agent

  • It is used with snapshot and transactional replication.
  • It applies the initial snapshot to the Subscriber and moves transactions held in the Distribution db to Subscribers.
  • It runs at either the Distributor for push subscriptions or at the Subscriber for pull subscriptions.

Log Reader Agent

  • It is used with transactional replication, which moves transactions marked for replication from the transaction log on the publisher to the distribution db.
  • Each db has its own Log Reader Agent that runs on the Distributor and connects to the Publisher.

Merge Agent

  • It is used with merge replication.
  • It applies the initial snapshot to the Subscriber and moves incremental data changes that occur.
  • Each merge subscription has its own Merge Agent that connects to both the Publisher and the Subscriber and updates both.
  • It captures changes using triggers.

Queue Reader Agent

  • It is used with transactional replication with the queued updating option.
  • It runs at the Distributor and moves changes made at the Subscriber back to the Publisher.
  • Unlike Distribution Agent and Merge Agent, only one instance of the Queue Reader Agent exists to service all Publishers and publications for a given distribution db.

REPLICATION TYPES

  • Snapshot Replication
  • Transactional Replication
  • Merge Replication

1. Snapshot Replication

  • The snapshot process is commonly used to provide the initial set of data and database objects for transactional and merge publications.
  • It copies and distributes data and database objects exactly as they appear at the current moment of time.
  • Snapshot replication is used to provide the initial data set for transactional and merge replication.
  • It can also be used when complete refreshes of data are appropriate (BOL).
  • Scenarios
  • When the data is not changing frequently.
  • If we want to replicate small amount of data.
  • To replicate Look-up tables which are not changing frequently.
  • It is acceptable to have copies of data that are out of date with respect to the publisher for a period of time

For example, if a sales organization maintains a product price list and the prices are all updated at the same time once or twice each year, replicating the entire snapshot of data after it has changed is recommended.

Snapshot Replication Architecture
Image 2

Source: BOL

How it Works?

  • Snapshot Agent establish a connection from distributor to publisher and generates fresh snapshot into snapshot folder by placing locks.
  • Snapshot agent writes copy of the table schema for each article to .sch file.
  • Copies data from published table at the Publisher and writes data to the snapshot folder in the form of .bcp file.
  • Appends rows to the Msrepl_commands and Msrepl_transactions.
  • Releases any locks on published tables.

Configuring Replication

  1. Configuring distributor
  2. Configuring publisher
  3. Creating publication of required type
  4. Creating subscription(s)
Step 1: Configuring distributor and publisher
  1. Take three instances

    Image 3

  2. Go to second instance -> Right click on Replication -> Configure Distribution…
  3. Next -> Select ‘SERVER2’ will act as its own distributor;

    Image 4

  4. Next

    Image 5

  5. Next
  6. Next
  7. Uncheck the check box present at Server2 -> Add

    Image 6

  8. Select instance Server1
  9. Next
  10. Enter strong password. (Automatically one login is created in distributor with the name Distributor_Admin)
  11. Next
  12. Next
  13. Finish

    Image 7

Observations
  1. Go to distributor -> Databases -> Find the new database “Distribution
  2. Go to Security -> Logins -> Find a new login “Distributor_admin
  3. Go to Server Objects -> Linked servers -> Find new linked server “repl_distributor
  4. Right Click on Replication -> Select distributor Properties

    Image 8

    Image 9

    • Transactions stored in distribution database are removed after 72 hrs and agents history is removed after 48 hrs.
    • To view snapshot folder path -> Click on publishers -> click on browse button (…) present to right side of publisher name.

      Image 10

    • Go to SQL Server Agent -> Jobs -> Find 6 new jobs are created automatically.

      Image 11

Step 2: Creating Snapshot Publication
  1. Go to publisher (Server1) -> Replication -> Right Click on Local Publications -> New publication.

    Image 12

  2. Next
  3. Select second option -> Click on Add -> Select Distributor instance (Server2)

    Image 13

  4. Connect ? Next
  5. Enter password of Distributor_admin login which we have mentioned while configuring publisher.
  6. Next
  7. Select required database. For example SSISDb

    <img width="549" height="299" src="/KB/database/715550/image016.jpg" />

  8. Next
  9. Select “Snapshot Publication” -> Next
  10. Select required tables -> Next

    Image 14

  11. Next -> Next
  12. Select the check box to create snapshot as follows

    Image 15

  13. Next
  14. Click on security settings
  15. Select as follows

    Image 16

  16. OK
  17. Next
  18. Next -> Next
  19. Enter publication name as follows

    Image 17

  20. Finish

    Image 18

Observations
  1. Go to publisher -> Replication -> Local publications -> Find new publication is created

    Image 19

  2. To check snapshot was created or not -> Right click on the publication (SSISDBSP) -> View Snapshot Agent Status
  3. Go to repldata folder as follows:

    Image 20

  4. Go to sub folders find the snapshot files (.bcp, .sch, idx, .trg)
  5. Go to distributor -> SQL Server Agent -> Jobs -> Find snapshot agent job was created

    Image 21

FAQ: How to display database names which consists of publications?

Ans: Go to publisher -> take new query ->

SQL
select name from sys.databases where is_published=1 or is_subscribed=1

Creating Subscription

  1. Go to publisher -> Replication -> Local Publications -> Right Click on SSISDBSP -> New Subscription
  2. Next
  3. Select the publication name: SSISDBSP
  4. Next
  5. Select Push subscriptions

    Image 22

  6. Next
  7. Add Subscriber -> Select third instance (Server1\test) -> Connect

    Image 23

  8. Next
  9. Under Subscription Database if there is no database exists with same name -> Select New database -> Enter Database Name -> OK -> Next

    Image 24

  10. Click on browse button (…) under distribution agent security page.
  11. Select “Run under Agent Service Account” and “By impersonating the process account” options as both distributor and subscriber’s service accounts are same. If the service account of subscriber is different, then create a login in subscriber with sysadmin privileges then mention that login details.

    Image 25

  12. Next
  13. Under Agent Schedule -> Select “Run Continuously”
  14. Under Initialize when select -> Immediately
  15. Next -> Next -> Finish
Observations
  1. Go to subscriber -> SSISDB -> Tables -> Find two tables are created

    Image 26

  2. Go to distributor -> SQL Server Agent -> Find new job is created, related to Distribution Agent

    Image 27

    Image 28

Verifying Replication

  1. Go to publisher perform some changes in any table present in publication
  2. Go to distributor run Snapshot Agent Job

    Image 29

  3. Go to subscriber observe the changes in the respective table

FAQ: How many articles may be there in a snapshot publication?
32767

FAQ: Max columns in a table?
1000

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer OptimizeSQL Technologies
India India
Mr. Kareem Syed is a senior SQL Server Trainer and working as Technical Consultant.

You can visit my blog at
www.optimizesql.blogspot.in

Comments and Discussions

 
QuestionBacking up on secondary server before replication config Pin
oscar_perez18-Jul-18 15:34
oscar_perez18-Jul-18 15:34 
QuestionMy local db have no static ip Pin
Member 1034575625-May-18 1:52
Member 1034575625-May-18 1:52 
QuestionSQL Instance Edition on which the Distribution database sits Pin
Member 1300003313-Feb-17 23:04
Member 1300003313-Feb-17 23:04 
QuestionSubscription Pin
Member 1204302615-Nov-16 22:31
Member 1204302615-Nov-16 22:31 
Questionvery nice and clear post.. thank you so much!! Pin
Member 115590903-Jun-16 10:16
Member 115590903-Jun-16 10:16 
GeneralMy vote of 5 Pin
D V L18-Jan-16 2:07
professionalD V L18-Jan-16 2:07 
Great Article Smile | :)
QuestionReplication Start stop of a publication via PS script Pin
Member 121970289-Dec-15 10:23
Member 121970289-Dec-15 10:23 
QuestionHow to create merge replication with DML command Pin
bhavesh thumar2-Dec-15 20:45
professionalbhavesh thumar2-Dec-15 20:45 
QuestionGetting an Error while performing Replication Pin
Member 1215707320-Nov-15 23:22
Member 1215707320-Nov-15 23:22 
GeneralMy vote of 4 Pin
Lucky Vdb25-Feb-15 20:41
professionalLucky Vdb25-Feb-15 20:41 
QuestionMerge Replication Pin
Member 974679818-Feb-15 8:57
Member 974679818-Feb-15 8:57 
Questionconfigure replication in sql server 2012 to azure VM Pin
Member 114342826-Feb-15 22:07
Member 114342826-Feb-15 22:07 
GeneralGood article Pin
REDDYGSN22-Dec-14 20:50
REDDYGSN22-Dec-14 20:50 
GeneralMy vote of 5 Pin
Thomas Chinyama30-Sep-14 4:08
Thomas Chinyama30-Sep-14 4:08 
QuestionGood Job Pin
Santhosh Babu Mahimairaj24-Sep-14 23:37
professionalSanthosh Babu Mahimairaj24-Sep-14 23:37 
QuestionGood article but I would like to know the problems and issues we might face with architecture please? Pin
PWFlyMan7-May-14 22:57
PWFlyMan7-May-14 22:57 
QuestionHow to start Snap shot agent using command prompt Pin
Member 867785825-Apr-14 1:43
Member 867785825-Apr-14 1:43 
QuestionWhat if remote web database do not allow subscription Pin
Asif Rehman10-Mar-14 23:41
Asif Rehman10-Mar-14 23:41 
GeneralMy vote of 5 Pin
Ștefan-Mihai MOGA14-Feb-14 17:07
professionalȘtefan-Mihai MOGA14-Feb-14 17:07 
Questionabout distributor Pin
Ekta Patel6-Feb-14 23:08
Ekta Patel6-Feb-14 23:08 
AnswerRe: about distributor Pin
Kareem.S7-Feb-14 13:37
Kareem.S7-Feb-14 13:37 
QuestionReplication over WAN Pin
Picman127-Jan-14 11:29
professionalPicman127-Jan-14 11:29 
AnswerRe: Replication over WAN Pin
Ekta Patel6-Feb-14 23:11
Ekta Patel6-Feb-14 23:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.