answersLogoWhite

0

Log shippindg in sql server

Updated: 9/14/2023
User Avatar

Wiki User

15y ago

Best Answer

Log shipping is one of the failover solutions offered by SQL Server 2000. In this context, failovermeans substituting primary server with a backup (sometimes also referred to as standby) server if the primary hardware becomes unusable. Failover solutions can also be used to provide close to 100% uptime-during primary database or server maintenance and during software upgrades you could use the standby server to continue serving your customers. Failover solutions can be automatic or manual. With automatic failover, the backup server detects when the primary server is not available and takes over without any intervention from the database administrator. An example of an automatic failover solution is clustering. With manual failover, the database administrator (DBA) has to perform some steps to bring the standby server online. In SQL Server 2000, log shipping is a form of manual failover.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Log shippindg in sql server
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Difference between sql server 2003 sql server 2005?

There is no such thing as SQL Server 2003. Microft released SQL Server 2005 as the next version of SQL Server 2000.


Introduction to sql server?

The nintroduction sql server is are the following


How does a person configure SQL server hosting?

To begin the process of the configuration of SQL server hosting, one needs to have a website. From there, one will be required to log on to their account and go to the "Web Hosting" section. Afterwards, one will be able to create the database server that one wants to host under the "Databases" section. One can find that the configuration of SQL server hosting is completed.


Where could one purchase a Sequel or SQL server?

The Sequel, or SQL, Server is owned by Microsoft. One can purchase an SQL Server from the Microsoft website. Microsoft also offers a free trial of the SQL Server.


Describe IDE of SQL Server 2005?

An IDE for SQL Server 2005 refers to an Integrated Development Environment for SQL Server 2005. This is a tool that can be used by a programmer to create and maintan a SQL server database. Some commonly used IDE tools for SQL Server 2005 are:SQL Server Management StudioTOAD for SQL ServerTOAD for Data Analysts


What is a SQL Server instance?

An SQL Server instance is a complete SQL server and you can install many instances on a machine but you can have only 1 default instance.


What has the author Louis Davidson written?

Louis. Davidson has written: 'Pro SQL Server 2005 Database Design and Optimization' 'Pro SQL server 2008 relational database design and implementation' -- subject(s): Client/server computing, SQL server 'Pro SQL Server 2005' 'SQL Server 2000 Stored Procedures Handbook (Expert's Voice)'


What has the author Patrick Dalton written?

Patrick Dalton has written: 'SQL server 2000 black book' -- subject(s): Client/server computing, Relational databases, SQL server 'Microsoft SQL Server black book' -- subject(s): Client/server computing, Database management, SQL server


When was SQL Server Management Studio created?

SQL Server Management Studio was created in 2005.


How to backup sql database?

Use program way backup and recovery. Tool repair sql database any version starting with MS SQL Server 2000, including SQL 2005.-------------You can backup SQL server database using SQL Server Management Studio (SSMS), T-SQL or PowerShell.Limitation: Backup created using higher version can't be restored in earlier version of SQL server.


Is there a SQLServer Compact Edition for Linux?

By SQL Server I am assuming you are referring to Microsoft's flavour of SQL. No. There is no version of SQL Server that runs on Linux


What is mirroring in sql server 2008?

Database mirroring maintains two copies of a single database that must reside on different server instances of SQL Server Database Engine. Typically, these server instances reside on computers in different locations. Starting database mirroring on a database, initiates a relationship, known as a database mirroring session, between these server instancesDatabase mirroring involves redoing every insert, update, and delete operation that occurs on the principal database onto the mirror database as quickly as possible. Redoing is accomplished by sending a stream of active transaction log records to the mirror server, which applies log records to the mirror database, in sequence, as quickly as possible. Unlike replication, which works at the logical level, database mirroring works at the level of the physical log record. Beginning in SQL Server 2008, the principal server compresses the stream of transaction log records before sending it to the mirror server. This log compression occurs in all mirroring sessions