Checking Latency on SQL Server 2000 | Database Journal

Checking Latency on SQL Server 2000

Dec 1, 2004
1 minute read

Latency in a replication environment
is the time it takes for a transaction to be transmitted from a publisher to
the distributor and from the distributor to a subscriber. In this article, I am
going to discuss how to find and monitor the latency frequency in a
transactional replication environment.

Pre-requisite

  1. Both
    Publisher and Subscriber are on SQL Server 2000 with latest service packs
  2. At
    least one object is being replicated from the Publisher to the Subscriber
  3. System
    clock on both publisher and the subscriber are in synch

Let’s
consider that we have a database named "Employee" on the publisher
and subscriber as shown in the script, (Refer to Fig. 1.4), and the articles "Employee"
and "Department" are already being replicated (transactional
replication) to the subscriber. Here the publishing server is "EBONY"
and the distributor/subscriber is "MAK." (Refer Fig 1.0, 1.1, 1.2,
1.3)

Publisher



[Fig 1.0]



[Fig 1.1]

Subscriber



[Fig 1.2]

Distributor



[Fig 1.3]

Publishing Database [Fig 1.4]

use master
go
create database Employee
go
use Employee
go
create table department (deptid int constraint department_pk primary key,
  departmentname varchar(250), Location varchar(100))
go
create table emp(empid int constraint emp_pk primary key, Empname varchar(100),
Dept int constraint emp_dept_FK foreign key references department(deptid))
go
Database Journal Logo

DatabaseJournal.com publishes relevant, up-to-date and pragmatic articles on the use of database hardware and management tools and serves as a forum for professional knowledge about proprietary, open source and cloud-based databases--foundational technology for all IT systems. We publish insightful articles about new products, best practices and trends; readers help each other out on various database questions and problems. Database management systems (DBMS) and database security processes are also key areas of focus at DatabaseJournal.com.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.