Jump to content

Log shipping

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Bsoo (talk | contribs) at 16:02, 14 November 2009 (Copy-edit.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In Microsoft SQL Server, log shipping is the process of automating the backup of a database and transaction log files on a primary (production) server, and then restoring them onto a standby server[1]. Similar to replication, the primary purpose of log shipping is to increase database availability by maintaining a backup server that can replace production server quickly.

Although the actual failover mechanism in log shipping is manual, this implementation is often chosen due to its low cost in human and server resources, and ease of implementation. As comparison, SQL server clusters enable automatic failover, but at the expense of much higher storage and license costs. Compared to database replication, log shipping does not provide as much reporting capabilities, but backs up also system tables along with data tables, and locks standby server from users' modifications.[2] A replicated server can be modified (e.g. views) and therefore is not suitable for failover purposes.

References

  1. ^ How to Perform SQL Server Log Shipping, "What is Log Shipping". Retrieved on 2008-12-16.
  2. ^ Ibison, Paul. "Log Shipping vs Replication". SQLServerCentral.com. Retrieved 2009-08-07.