Skip to content

Latest commit

 

History

History
153 lines (95 loc) · 8.55 KB

File metadata and controls

153 lines (95 loc) · 8.55 KB
title Tutorial: Configuring Transactional Replication | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql-non-specified
ms.prod_service database-engine
ms.service
ms.component replication
ms.reviewer
ms.suite sql
ms.technology
replication
ms.tgt_pltfrm
ms.topic article
applies_to
SQL Server 2016
helpviewer_keywords
tutorials [SQL Server replication]
replication [SQL Server], tutorials
wizards [SQL Server replication]
ms.assetid 7b18a04a-2c3d-4efe-a0bc-c3f92be72fd0
caps.latest.revision 21
author MashaMSFT
ms.author mathoma
manager craigg
ms.workload On Demand

Tutorial: Configuring Transactional Replication Beetween Continuously Connected Servers

[!INCLUDEappliesto-ss-xxxx-xxxx-xxx-md] Replication is a good solution to the problem of moving data between continuously connected servers. Using replication's wizards, you can easily configure and administer a replication topology. This tutorial shows you how to configure a replication topology for continuously connected servers.

What You Will Learn

This tutorial will show you how to publish data from one database to another using transactional replication.

In this tutorial, you will learn how to:

[!div class="checklist"]

  • Publish data using Transactional Replication
  • Create a subscription to the Transactional publication
  • Validate the Subscription and measure latency

Requirements

This tutorial is intended for users who are familiar with basic database operations, but who have limited experience with replication. This tutorial requires that you have completed the previous tutorial, Preparing the Server for Replication.

To use this tutorial, your system must have the following SQL Server Management studio and these components:

Estimated time to complete this tutorial: 30 minutes.

Publish data using Transactional Replication

In this secton, you will create a transactional publication using [!INCLUDEssManStudioFull] to publish a filtered subset of the Product table in the [!INCLUDEssSampleDBobject] sample database. You will also add the SQL Server login used by the Distribution Agent to the publication access list (PAL). Before starting this tutorial, you should have completed the previous tutorial, Preparing the Server for Replication.

Create a publication and define articles

  1. Connect to the Publisher in [!INCLUDEssManStudioFull], and then expand the server node.

  2. Expand the Replication folder, right-click the Local Publications folder, and click New Publication. This will launch the Publication Configuration Wizard.

    New Publication

  3. On the Publication Database page, select [!INCLUDEssSampleDBobject], and then click Next.

  4. On the Publication Type page, select Transactional publication, and then click Next.

    Transactional Replication

  5. On the Articles page, expand the Tables node, select the Product check box, then expand Product and clear the ListPrice and StandardCost check boxes. Click Next.

    Articles to publish

  6. On the Filter Table Rows page, click Add.

  7. In the Add Filter dialog box, click the SafetyStockLevel column, click the right arrow to add the column to the Filter statement WHERE clause of the filter query. Then manually type in the WHERE clause modifier as follows:

    WHERE [SafetyStockLevel] < 500  

    Filter Statement

  8. Click OK, and then click Next.

  9. Select the Create a snapshot immediately and keep the snapshot available to initialize subscriptions check box, and click Next.

    Snapshot Agent

  10. On the Agent Security page, clear Use the security settings from the Snapshot Agent check box.

  11. Click Security Settings for the Snapshot Agent, enter <Machine_Name>\repl_snapshot in the Process account box, supply the password for this account, and then click OK.

    Snapshot Agent Security

  12. Repeat the previous step to set repl_logreader as the process account for the Log Reader Agent, and then click Finish.

    Log Reader Agent Security

  13. On the Complete the Wizard page, type AdvWorksProductTrans in the Publication name box, and click Finish.

    Name the Publication

  14. After the publication is created, click Close to complete the wizard.

To view the status of snapshot generation

  1. Connect to the Publisher in [!INCLUDEssManStudioFull], expand the server node, and then expand the Replication folder.

  2. In the Local Publications folder, right-click AdvWorksProductTrans, and then click View Snapshot Agent Status.

  3. The current status of the Snapshot Agent job for the publication is displayed. Verify that the snapshot job has succeeded before you continue to the next lesson.

To add the Distribution Agent login to the PAL

  1. Connect to the Publisher in [!INCLUDEssManStudioFull], expand the server node, and then expand the Replication folder.

  2. In the Local Publications folder, right-click AdvWorksProductTrans, and then click Properties.

    The Publication Properties dialog box is displayed.

  3. Select the Publication Access List page, and click Add.

  4. \In the Add Publication Access dialog box, select <Machine_Name>\repl_distribution and click OK. Click OK.

Create a subscription to the Transactional publication

Validate the Subscription and measure latency

See Also
Replication Programming Concepts