Article ID: 275146 - Last Review: June 19, 2003 - Revision: 2.1 INF: Frequently Asked Questions - SQL Server 7.0 - Log ShippingThis article was previously published under Q275146 On This PageSUMMARY
This article addresses some common questions about the Log Shipping tool for Microsoft SQL Server 7.0. Log shipping automates the process of backing up, copying, and restoring transaction log backups from a primary server to a standby server. You can use log shipping to maintain a warm standby server that can be brought online quickly in the event of a failure of the primary server. In SQL Server 7.0, log shipping is an unsupported tool. However, Microsoft Product Support Services provides "best effort" assistance to resolve any issues with the tool that do not require source code modifications. MORE INFORMATIONQ. Where can I find the log shipping installation files or program? A. In SQL Server 7.0 log shipping is in the Back Office Resource Kit. The files supplied as part of the Log Shipping utility include scripts to create the required tables and stored procedures to set up log shipping. The tool also includes a help file, which covers setup and troubleshooting techniques. Q. Will my SQL Server logins be transferred as part of log shipping? A. No. SQL Server logins are not transferred during log shipping. SQL Server logins are stored in the master database of the server. To make sure that you have all the logins from the production server on the warm standby server you can:
A. To bring a warm standby server online, use these steps:
Q. Can you use log shipping in an environment where there are non-logged operations like SELECT INTO or BulkCopy? A. No. The log shipping sequence is broken when you perform any non-logged operations on the source server. Transaction log backups are not allowed after you perform non-logged operations. Perform either a full or a differential backup of the database after any non-logged operation. Restore that backup on the destination server before you resume log shipping. Q. What process does Microsoft recommend for setting up log shipping in Microsoft SQL Server 7.0? A. Use these steps:
Q. Where can I check for log shipping error messages? A. The SQL Server error logs on the servers have information about backup and restore operations. In addition, the backup_movement_plan_history table is a history table that is populated by the copy and load jobs on the standby server. The backup_movement_plan_history table provides useful information about the cause of log shipping failures. Q. When I try to add a backup movement plan by using this code
"SQLServerAgent is not currently running so cannot be notified of this action".
A. Running the preceding stored procedure populates the table msdb..backup_movement_plan, and then creates the SQL Server Agent copy and load jobs. If the SQL Server Agent is not running on the destination server, the error message occurs. You can safely ignore the error message after you start the SQL Server Agent on the destination server. Q. The copy job on my destination server fails. What can I check? A. You can check:
Q. Can I have the destination database online while transaction logs are being loaded on the database? A. No. You must restore the full source database backup on the destination database by using either the NORECOVERY or the STANDBY option for log shipping to work. If not, the following error message appears in the backup_movement_plan_history table:
"Error on loading file c:\mssql7\backup\Log_Source_tlog_200010090015.TRN : [Microsoft SQL-DMO (ODBC SQLState: 42000)] Error 4306: [Microsoft][ODBC SQL Server Driver][SQL Server]The preceding restore operation did not specify WITH NORECOVERY or WITH STANDBY. Restart the restore sequence, specifying WITH NORECOVERY or WITH STANDBY for all but the final step.
[Microsoft][ODBC SQL Server Driver][SQL Server]Backup or restore operation terminating abnormally."
Q. What can I check if I see this error message in the backup_movement_plan_history table?
Source directory \\Servername\logshipping share\ is not accessible
Q. When I see the following error message in the backup_movement_plan_history table, what are the available options? This backup set cannot be restored because the database has not been rolled forward far enough
If you have several files to load to get the databases resynchronized, you can always create a complete backup of the production database, and then perform a restore that uses the NORECOVERY or STANDBY option on the secondary server. Q. Can database files be added or deleted from the database that is the source in log shipping? A. No. The addition or deletion of any files by altering the database results in the need to resynchronize log shipping. Transaction log restores on the destination server fail with this error message:
Server: Msg 3155, Level 16, State 1, Line 1 The RESTORE operation cannot proceed because one or more files have been added or dropped from the database since the backup set was created.
Server: Msg 3013, Level 16, State 1, Line 1
Backup or restore operation terminating abnormally.
REFERENCESFor additional information, click the article number below to view the article in the Microsoft Knowledge Base:314515
(http://support.microsoft.com/kb/314515/EN-US/
)
INF: Frequently Asked Questions - SQL Server 2000 - Log Shipping
| Article Translations
|
Back to the top
