VERITAS Replication Exec

Size: px
Start display at page:

Download "VERITAS Replication Exec"

Transcription

1 WHITE PAPER VERITAS Replication Exec REPLICATING AND RESTORING MICROSOFT SQL DATABASES WITH REPLICATION EXEC VERSION INCLUDES TABLE OF CONTENTS STYLES 1

2 TABLE OF CONTENTS Introduction...3 Safe Replication of Live Databases...3 Phases of a Replication Job...3 Scheduled vs. Continuous Replication...4 Replicating SQL Data...4 SQL to SQL:...4 SQL to File Server:...5 Replication Coverage...6 Replicating a User-Created SQL Database...6 Replicating All SQL Databases...11 Notes on SQL Server Considerations to take when replicating Microsoft SQL Server 2000:...12 Post Replication Tasks...13 Starting a Standby SQL Server...13 Attaching a Replicated Database...13 Attaching a Database Using the sp_attach_db Stored Procedure:...13 Attaching a Database using SQL Enterprise Manager (SQL 2000)...14 File Server Replication...15 Client Connectivity...15 Update ODBC on clients:...15 Rename standby SQL Server:...15 Microsoft SQL Server 7.0:...16 Microsoft SQL Server 2000:...16 Reverting to Primary SQL Server ( Failback )...16 Reverting All SQL Databases...16 Migrating a User-Created Database Back to the Original Server...17 Reverse Replication of Live Database Files...23 Detach the database:...23 Perform one-time replication while database remains online:...23 Configure SQL file locations For continuous replication:...23 Additional Applications for SQL Replication...24 Off-host Centralized Backup...24 Migrating a Database to a New Server...25 Publishing Copies of a Database

3 INTRODUCTION Corporate needs for storage and access of critical data demand that data be available at all times with little or no downtime. Many of the corporate environments today make use of Microsoft SQL Server to maintain storage of such critical data. This document outlines the replication of SQL databases using Replication Exec 3.1. Replication Exec can be used to maintain real-time copies of databases stored in a safe location on the network. When the need arises, a standby SQL Server can be brought online, or Replication Exec can be used to replicate the data to a working SQL server with minimal downtime. Replication Exec can be used to migrate data from one SQL Server to another. It is also possible to use a product such as VERITAS NetBackup or Backup Exec to back up copies of the database files from the standby server. This capability is known as off-host backup. This document describes several different approaches to replicating data maintained by SQL Server version 7.0 and SQL Server It describes the steps needed to replicate one or more databases, as well as the procedures to bring a database online on a standby server. It also outlines the steps needed to migrate the data from one or more databases back to a primary server when it comes back online. SAFE REPLICATION OF LIVE DATABASES Replication Exec is a file replication product. It creates faithful copies of source files on one or more target systems. Replication Exec has no explicit knowledge of databases such as those maintained by Microsoft SQL Server. However, it can still be used to make accurate copies of SQL databases on one or more target systems. It is important to note that Replication Exec can make a faithful copy of a collection of files, even while these files are being updated on the source system. For a database product, such as Microsoft SQL Server, this means that Replication Exec can be used to replicate all the files making up one or more databases, even while the databases are being updated. It is not necessary to shut down a SQL Server database in order to use Replication Exec to copy it to a remote system. This section outlines the steps Replication Exec takes to ensure a faithful, consistent copy of a database on a remote system. PHASES OF A REPLICATION JOB There are two phases to a Replication Exec replication job the synchronization phase and the dynamic phase. These phases cooperate to guarantee a faithful replica of a collection of files on the target system. When a replication job first starts, it synchronizes copies of files between the source and target server. If a file exists on the source system but not on the target, the file is simply copied to the target system. If the file exists on both systems, Replication Exec analyzes the differences in the files, and either sends the target a new copy of the file (if the file is smaller than 1 MB) or sends the target updated portions of the source file (if the file is larger than 1 MB). Of course, for large database files, synchronization may take a relatively long time. If there is update activity in the source database during this time, the files may be updated on the source, so the synchronized copies may contain stale data at the end of the synchronization phase. Replication Exec protects against this mismatch by using the dynamic phase of replication. At the same time the source and target files are being synchronized, Replication Exec also starts the dynamic phase of replication. The dynamic phase tracks changes to the files as they occur on the source system. At the end of the synchronization phase, changes that occurred to the source files are sent to the target system and are used to update the copies of the files on the target. The dynamic phase tracks changes to the source files in the order that they occur on the source system. Files on the target system are updated in the same order, maintaining write order fidelity. In this way, the relationships between write operations to different files on the source system are preserved on the target. This is important, for instance, in preserving the order SQL Server uses to write to its database log and data files to guarantee transactional consistency of a database. 3

4 SCHEDULED VS. CONTINUOUS REPLICATION There are two main ways that Replication Exec can be used to replicate files. With scheduled replication, Replication Exec starts a replication job at a user-specified time. This job synchronizes the source and target files, as described above. When the synchronization phase finishes, and dynamic updates have been applied, the job terminates. It is possible to configure a replication schedule to ensure the source and target files are synchronized on a periodic basis. Using this method, the files on the target system represent snapshots of the source files at the time of job termination. This can be useful, for instance, to make daily or hourly copies of important database files. If a Replication Exec replication job is configured for continuous replication, changes made to the source files are replicated and also applied to the target files. Using continuous replication, the copies of the files on the target system represent live copies of the source files. A continuous replication job starts in the same way as a scheduled job. Source and target files are first synchronized, and then updates recorded by the dynamic phase of replication are applied to bring the target files up to date. At this point, the synchronization phase is finished. With a continuous replication job, the dynamic phase continues forever, recording all changes to source files and applying them to the target files. No further synchronization is needed. Either method of replication can be used with SQL Server data files. REPLICATING SQL DATA There are two methods of using Replication Exec replication to safeguard SQL data: SQL TO SQL: Have a second, standby SQL Server on the network to which the data will be replicated (Target Server). Server A (Source SQL Server) Server A Purpose: SQL Dir: Service Acct: Source Dir: Server B Purpose: SQL Dir: Service Acct: Target Dir: Figure 1 Online SQL Server C:\Program Files\Microsoft SQL Server\MSSQL DomainA\Administrator C:\Program Files\Microsoft SQL Server\MSSQL\Data (The directory that will be replicated to the target) Standby SQL Server C:\Program Files\Microsoft SQL Server\MSSQL DomainA\Administrator C:\Program Files\Microsoft SQL Server\MSSQL\Data (The directory where the replicated data will reside) Note: Source Dir and Target Dir must be the same if replicating all SQL databases. 4

5 If Server A fails in this scenario, replicated databases can be brought online by attaching them on Server B, or the entire SQL Server installation on Server B can be brought online (by starting the MSSQLServer Service on Server B). SQL TO FILE SERVER: Replicate to and store the SQL data directory on a target server until the time for using the safeguarded information becomes necessary. The data can then be replicated to an operational SQL server. Server A Figure 2 Server A Purpose: SQL Dir: Service Acct: Source Dir: Server B Purpose: SQL Dir: Service Acct: Target Dir: Online SQL Server C:\Program Files\Microsoft SQL Server\MSSQL DomainA\Administrator C:\Program Files\Microsoft SQL Server\MSSQL\Data (The directory that will be replicated to the target) File Server SQL is not installed <N/A> D:\VSR\replica\MSSQL\Data (The directory where the replicated data will reside) Note: Source Dir and Target Dir do not have to be the same. With this scenario, if Server A fails, a new SQL Server will have to be brought online, and the data will then have to be replicated from Server B to the new SQL Server. Both methods reduce the amount of downtime that can be caused by a system failure. SQL to SQL replication will obviously have less downtime, but another Microsoft SQL Server license will be needed for this type of replication. SQL to File Server replication eliminates the need for an additional Microsoft SQL Server license, but because the data stored will have to be replicated again (to a SQL Server), the downtime is longer (See the File Server Replication section for additional steps that are required). The corporate needs have to be explored before determining which method of replication is best suited for your environment. For a walkthrough of creating a SQL Replication job, see the sections below. 5

6 REPLICATION COVERAGE There are three main ways of protecting SQL data. The first method replicates one or more user-created databases to a standby system running SQL Server. This method uses SQL 7.0 and 2000 Server s ability to attach a database while SQL Server is running. The second method replicates all SQL Server databases, including system databases containing SQL configuration information, to a standby server. With either of these methods, SQL Server software is installed on two servers. The first, or primary, server is the one normally used to provide client access to the databases. The second, or standby, server can be used to provide access to a replicated copy of the data in the event of problems with the primary server. When using Replication Exec to replicate SQL Server data files, a database using these files is only accessible on one server at a time. The third method replicates SQL Server data files to a safe location on a file server. In this case, the file server does not run SQL Server software, but provides safe storage for a copy of data that can be recopied to restore access to databases in the event of a SQL Server failure. With any of these methods, it is also possible to perform off-host backup of the replicated data files. There are different considerations to keep in mind for each method, so they will be described separately in the following sections. Note: If you plan to use Replication Exec to replicate SQL data in a primary/standby server configuration, the version of SQL Server software should be the same on both the primary and secondary server. While it is possible to attach a SQL 7.0 database with a SQL 2000 server, you cannot attach a SQL 2000 database with a SQL 7.0 server, since the internal database formats are slightly different. If you plan to use Replication Exec to replicate SQL data in order to permanently migrate it to another server, the replication target system must run a version of SQL Server equal to or greater than the original source system. Thus, you can use Replication Exec to migrate data from a SQL 7.0 server to a SQL 2000 server, but not the reverse. REPLICATING A USER-CREATED SQL DATABASE There are many cases where replicating all SQL Server databases is not needed. In those cases, you can configure Replication Exec to replicate one or more user-created databases. One advantage of this approach is the ability to run SQL Server on both the original source server and on the standby server at the same time. Although the replicated databases will not be available on the standby server during replication, the standby server can serve other databases while replication proceeds. In the event the source server fails, the standby server can take over serving the replicated databases. Example Multiple Data Files and Log Files SQL installations can vary dramatically from network to network. It is very rare that the default setup of SQL will be followed. For performance/fault-tolerance reasons, the data files making up a database may be spread across multiple disks, and the transaction log files are usually kept on a different disk from the data files. The following procedure explains how to create a replication job to ensure all needed data is replicated in this type of scenario. This will include creating a job with multiple source directories, and replicating this information to the same directory structure on the target server. The steps to set up the replication job are as follows: 6

7 1. From the Jobs tab, click on the Create New Job tab. Figure 3 Creating a new replication job 2. On the New Job Wizard Job Type screen, choose Standard (one to one) and click Next (4). Figure 4 Selecting a job type 7

8 3. On the Replication Options screen (Figure 5), check the Prescan and No Changes on Target options. You may also choose continuous replication by selecting the Exact Replica on Target, and the Continue Replicating After Synchronization. Once the appropriate options are selected, click Next to continue. Figure 5 Selecting job options 4. On the Replication Pairs screen, click Add Pair and select the current SQL Server as the Source and the standby SQL Server or file server as the Target. Figure 6 Configuring a replication pair 8

9 5. On the Replication Rules screen, select the first database directory path on the source machine. Highlight the directory that holds database files, and click the Add Rule button. Figure 7 Selecting a source directory 6. On the Rule screen, click Add in the Inclusions and Exclusions section and select the default filter (*.*) to replicate all files in this directory. It is also possible to select individual files to replicate by specifying their exact names for inclusion Once set, click OK. In the Target Path section, click Edit and type the target path (where the data will be replicated to). Figure 8 Including files to be replicated Copyright 2005 VERITAS Software Corporation. All rights reserved. VERITAS, the VERITAS Logo and all other VERITAS product names and slogans are trademarks or registered 9

10 Once set, click OK to add the rule. If your database is made up of files in multiple directories, repeat Steps 5 and 6 to add any additional database directories, and/or database log directories to the replication job. If all the files are contained in a single directory, proceed to step 7. Note: When you replicate only user-created databases, the directory structure on the target does not have to be the same as the source. Because the master database is not being replicated, the master database on the target server will not hold the path information of the replicated database. When the replicated database is attached to the standby SQL Server, the target master database will then be updated with the correct path(s). If the database being replicated exists in multiple directories, it is easier to keep the target paths the same as the source. If this is not followed, additional steps will need to be taken to bring the replicated database online. Steps on how to attach a SQL database are outlined in the Attaching a Replicated Database section below. Once this is complete, select Rule List from the View As drop-down menu. This will show all source directories that are to be replicated. Verify all needed directories appear, and select Next. Figure 9 Confirming replication rules 7. On the Replication Schedule screen, select the days and hours the replication job should run, and, if wanted, check the Enable Scheduled Starts box. Click Finish to create the Replication Job. 10

11 Figure 10 Setting a replication Schedule Note: In this example, replication is set to run at all times. (Replication runs during all times highlighted in blue.) If you do not wish replication to run constantly, use the Clear All button to clear all times, and set the times you wish replication to run. For continuous replication jobs, you should make sure that all times are enabled. If you want the replication process to kick off automatically, select the Enable Scheduled Starts check box. If this is not selected, the job will have to be started manually using the Replication Exec console. Once the schedule is set, select Finish to create the replication job. The master database is responsible for knowing which databases exist, and where they are located. Because the master database was not replicated, the Target SQL Server is unaware of these new databases. In order for a database to be available on the target server, it must be attached. The steps on how to do this can be found in the Attaching a Replicated Database section below. See the Post Replication Tasks section for steps that must be followed after a successful replication has occurred when you want to make the replicated databases available on a standby server. If replicating from SQL to a File Server, see the File Server Replication section for post replication tasks. REPLICATING ALL SQL DATABASES In some cases, it may be best to replicate all SQL Server databases, including system databases containing SQL configuration information. One reason to replicate all databases is if you make frequent changes to system tables, such as adding users to the syslogins table in SQL s master database. If you replicate all databases, changes to system tables will be reflected in the replicated data files. There are several rules to follow when replicating all SQL databases. Because the master database contains information concerning the structure of the SQL installation, it is important to follow all steps listed below. Replicating databases is much like replicating any kind of data. With SQL Server, some measures must be taken to ensure the data is replicated safely and can be restored to a working state: 11

12 If the installation of SQL Server on Machine A was given the path C:\Program Files\Microsoft SQL Server\MSSQL, then the installation of the SQL Server on Machine B must also be given the path C:\Program Files\Microsoft SQL Server\MSSQL. (If the installation paths vary between servers, the master database will contain incorrect path information after the replication, and the SQL Service on the standby server will fail to start.) All login credentials supplied during the original SQL installation must be supplied during the installation of the standby SQL Server. The MSSQLServer Service must be stopped on the target machine while the replication job is active. This will allow the current information stored on the target to be overwritten without causing any problems. If the MSSQLServer Service is running on the target machine when you start the replication job, the replication job will fail because the MSSQLServer Service has the database files open on the target machine. Note: On the source machine, the replication job is able to read the database files, even though the MSSQLServer Service may have them open. This allows Replication Exec to replicate live databases, as described in a previous section of this paper. Creating a Replication Exec job to replicate the all SQL databases is very similar to creating a job to replicate user-created databases. Follow the same steps as described in the previous section. The only difference is that the job must be configured to replicate all directories containing SQL database files, including the directory containing the master database. Remember also in this case that all source and target directory paths must match. To make the replicated data available to clients via the standby SQL Server, first wait for the replication job to finish. If you have enabled continuous replication for the job, wait until the Replication Exec Console Monitor display shows that the job has permanently entered the dynamic replication phase. Then stop the replication job. Now the MSSQLServer Service on the standby server can be restarted to restore the replicated data to a working state. The result will be a replica of the original SQL Server, including all databases. After a successful replication of all SQL databases, additional steps are required, and are outlined in the How to section. NOTES ON SQL SERVER 2000 Considerations to take when replicating Microsoft SQL Server 2000: With Microsoft SQL Server 2000, the replication follows the same steps as for SQL Server 7.0. However, there is a new feature available with Microsoft SQL 2000 that allows for a more definable replication: Multiple instances in SQL 2000 create multiple data directories with names corresponding to the name of the instance within the server. Example: Two SQL Servers have been installed and registered on one machine, named DEUS. The first installation of SQL Server is known as the default server named DEUS, and the other server is called DEUS\SQL2. Both servers will show up in the server tree within the Enterprise Manager console, and each will have its own unique directory structure in the following format: C:\Program Files\Microsoft SQL Server\MSSQL\DATA (The first, or default, SQL server.) C:\Program Files\Microsoft SQL Server\MSSQL$SQL2\DATA (The second server instance, named SQL2.) 12

13 Each instance creates and runs a separate MSSQLServer service. Services for each consecutive instance will contain the name of the instance (example shown below): Using the same example as above, the two Servers have been installed and registered on one machine. Each will have its own MSSQLServer Service in the following format: MSSQLServer - (For the default server.) MSSQL$SQL2 - (For the SQL2 installation.) POST REPLICATION TASKS There are a few steps that must be done before replicated databases can be brought online. This sections outlines the procedures that must be followed in order to bring the standby replicated data online successfully. This section also covers client connectivity and gives some suggestions on how clients can connect to the standby SQL Server. STARTING A STANDBY SQL SERVER If you replicated all SQL Server databases to a standby SQL Server, there are two simple steps to follow to bring up the standby server: 1. If it is still running, stop the replication job. Stopping the replication job allows the files on the target system to be written, which is necessary for the correct operation of SQL Server. 2. Start the MSSQLServer service on the standby server. The MSSQLServer service will automatically bring all the replicated databases online. ATTACHING A REPLICATED DATABASE If you replicated files for an individual database to a standby SQL server, the standby instance of SQL Server is unaware of the new database. In order for the new database to be available, the master database must be updated. Attaching the database does this. With SQL 7.0 or SQL 2000, you can use the sp_attach_db stored procedure to attach the database. With SQL 2000, you can also attach the database using the SQL Enterprise Manager. Instructions for each method are listed below: Attaching a Database Using the sp_attach_db Stored Procedure: Make sure to stop the replication job before attempting to attach the database. Syntax (See SQL Server Books Online for further information.): sp_attach_db [@dbname=]'dbname', = ] 'filename_n' [,...16 ] Arguments: [@ dbname =] 'dbname' is the name of the database to be attached to the server. The name must be unique. dbname is sysname, with a default of NULL. [@filename1 =] 'filename_n' is the physical name, including path, of a database file. filename_n is nvarchar(260), with a default of NULL. There can be up to 16 file names specified. The parameter names start and increment Note: The file name list must include at least the primary file, which contains the system tables that point to other files in the database. The list must also include any files that were replicated to a different directory than the 13

14 source. If the directory structure of the replicated data on the target is the same as the source, only the primary file needs to be specified. If the target directory structure does not match the source, you must specify all database files. Return Code Values 0 (success) or 1 (failure) Remarks If more than 16 files must be specified, use CREATE DATABASE with the FOR ATTACH clause. Permissions Needed Only members of the sysadmin and dbcreator fixed server roles can execute this procedure. Examples Attaching a database with multiple data and log directories that was replicated to a different directory structure on the Target Server: If the database is replicated to the same location on the Target (Source and Target directories are the same), the primary file will contain correct information about where the other files (data or log) exist on the Target Server. If the location is different (Source and Target directories are different), each file will need to be listed within the Stored Procedure (see example below). This example attaches a spanning database1 (4 data files and 1 log file) to the SQL Server: EXEC sp_attach_db Bank, 'E:\data1\Bank_branch_data.mdf', 'E:\data1\Bank_teller_ data.ndf', 'E:\data1\Bank_account_data.ndf', 'E:\data1\Bank_history_data.ndf', 'E:\log1\Bank_log.ldf' Attaching a Database using SQL Enterprise Manager (SQL 2000) With SQL 2000, you can use the SQL Enterprise Manager to attach a database, as in this example. 14

15 FILE SERVER REPLICATION If replicating from SQL to a File Server, and the source SQL Server fails, a new SQL Server will have to be brought online, and the data will then have to be replicated to the new SQL Server. When the new SQL Server is brought online, the following steps must be taken in order to replicate the safeguarded information: 1. If you replicated all SQL Server databases, stop the MSSQLServer service on the new server. If you are restoring an individual database, make sure the new SQL Server does not already have a database of the same name online. 2. Create a replication job to copy the data from the file server target directory (Ex: D:\VSR\replica\MSSQL\Data) to the appropriate directories (Ex: C:\Program Files\Microsoft SQL Server\MSSQL\Data) on the new SQL Server. Since this will be a one-time replication, do not select the continuous replication option for this job. Note: If the master database was replicated, the new SQL Server still must have the same directory structure as the original. If the standby SQL Server is installed with an alternate path, the SQL Services will fail to start. 3. Start the replication job. Since you did not configure continuous replication for this job, the job will expire after it has finished synchronizing all of the database files. Wait for the job to finish before proceeding to the next step. 4. If you replicated all SQL Server databases, restart the MSSQLServer service on the new server. Otherwise, follow the steps outlined in the previous section to attach the restored databases. CLIENT CONNECTIVITY When the new standby Server is brought online, the clients must be able to access the new SQL Server. A couple of options have been listed below: Update ODBC on clients: The server name for an ODBC connection is a registry value. A registry file can be created and distributed to clients to update the DSN value, and point to the new SQL Server. The best way to distribute this would be through a logon script. The problem is this will most likely require either a logoff/logon or a reboot in order to kick off the registry file merge. The DSN registry entry can be found in one of the following locations: User DSN: HKEY_CURRENT_USER\Software\ODBC\ODBC.INI System DSN: HKEY_LOCAL_MACHINE\Software\ODBC\ODBC.INI Rename standby SQL Server: This would definitely be the easiest solution, but other problems can arise from this. If the standby machine is used only for SQL Server, renaming the server will most likely not cause a problem. If other software is installed on this system, renaming it could potentially cause problems. The procedure for renaming the server varies between versions. Below are the steps to follow in order to rename the machine SQL Server is installed on: 15

16 Microsoft SQL Server 7.0: If you change the computer name of the server, you cannot start Microsoft SQL Server until you run SQL Server Setup. You will be prompted to upgrade, and the necessary SQL Server options will be reset with the new computer name. After you ve upgraded, you can exit Setup. Your databases will not be affected by this procedure. Microsoft SQL Server 2000: When you change the name of the computer that is running Microsoft SQL Server 2000, the new name is recognized during SQL Server startup. You do not have to run Setup again to reset the computer name. You can connect to SQL Server using the new computer name after you have restarted the server. However, to correct the sysservers system table, you should manually run these procedures (Note: Make sure the replication job is stopped before running the sp_dropserver stored procedure): sp_dropserver <old_server_name>go sp_addserver <new_server_name>go Issues with Remote Logins: If the computer has any remote logins, sp_dropserver may generate an error similar to this: Server: Msg 15190, Level 16, State 1, Procedure sp_dropserver, Line 44 There are still remote logins for the server '<server_name>'. To resolve the error, you may need to drop remote logins for this server. REVERTING TO PRIMARY SQL SERVER ( FAILBACK ) The previous sections describe situations where the primary SQL Server has failed, and replicated copies of one or more databases are brought online on a standby server to resume service. In most cases, the primary server will then be repaired, and you may want to resume serving the databases from the primary server. However, while the primary server was offline, the databases may have been updated on the standby server. In order to preserve all the updates, you must replicate the standby copies of the databases back to the original server. The easiest way to do this is to create a reverse replication job to replicate the database files back to the original server. As with the original database file synchronization, Replication Exec analyzes the differences between the two copies of the database files, and sends only the updated portions from the standby server to the original server. REVERTING ALL SQL DATABASES If you replicated all SQL Server databases to a standby SQL Server, there are two simple steps to follow to bring up the standby server: If your original replication job was configured to replicate all SQL databases, including system database files, to a standby server, the process for creating and running a reverse replication job is simple. 1. Using the Replication Exec console, follow the steps as described in Figure 3 and Figure 4 to create a new replication job. 2. On the replication options screen, shown in Figure 5, select all the options, including the Exact Replica on Target and Continue Replicating options. These options allow you to keep the standby SQL Server online while the reverse replication proceeds. Updates to the databases on the standby server will still be allowed during reverse replication, and the updates themselves will be replicated back to the original server. 3. When you create the replication pair for the new job, reverse the order of source and target systems. The standby SQL server should now be selected as the source of replication, and the original SQL Server should be selected as the new target. 16

17 4. Follow the steps outlined in Figure 7 and Figure 8 to add all the directories containing SQL database files to the replication job. Since you are replicating all SQL databases, the source path must be the same as the target path for all files. 5. Review the selected paths by using the rule list view as shown in Figure If it is running, stop the MSSQLServer service on the original SQL Server system. This will allow the database files to be written back to the original system. 7. Start the replication job. 8. When the replication job has finished the synchronization phase and entered the dynamic-only phase of replication, stop the MSSQLServer service on the standby server. For a short period of time, the databases will be unavailable to clients. 9. After all the dynamic data has been replicated back to the original server, stop the replication job in preparation for starting MSSQLServer on the original system. Stopping the replication job allows the replicated files to be modified on the target ( original server) system. 10. Finally, start the MSSQLServer service on the original server, following the steps described in Post Replication Tasks. Now that the original SQL Server is running again, you may restart the forward replication job to provide protection for the database files, just as when you started. MIGRATING A USER-CREATED DATABASE BACK TO THE ORIGINAL SERVER If you used Replication Exec to protect one or more user-created databases, but not the system databases, the steps to migrate the databases back to the original server are slightly different than the method described above. As in the previous example, you will create a reverse replication job to synchronize the updated database files with the originals. However, in this case, you must be particularly aware of the effects of the Exact Replica on Target setting of a replication job. For example, let s say the original server had two databases, named BankOne and BankTwo. BankOne is made up of two files: E:\Data\BankOne.mdf E:\Log\BankOne_log.ldf The database named BankTwo is also made up of two files: E:\Data\BankTwo.mdf E:\Log\BankTwo_log.ldf Notice the data files for the two databases share common directories. If you want to migrate vthe database named BankOne back to the original server, you must not use the Exact Replica on Target option when creating the reverse replication job. Otherwise, Replication Exec will delete the BankTwo files (if they were not replicated in the original job), or will mistakenly replicate the BankTwo files back to the original server along with the BankOne files. Here are the steps to replicate only the BankOne files from the standby server, WILDFYRE back to the original server, DEUS : 17

18 1. Use the Replication Exec console to create a new one-to-one replication job: Figure 12 Figure 13 18

19 2. On the Replication Options screen, select the Prescan and No Changes on Target options: Figure Configure the replication pair, setting the new source system to be the standby SQL Server, and the new target system to be the original SQL Server: Figure Create rules to replicate the individual files making up the database. First, select the source directory containing the data file: 19

20 Figure Create a selection rule to replicate only the file for the database you are migrating: Figure 17 20

21 6. Specify a custom path to restore the database back to its original directory on the original server: Figure Repeat steps 4 through 6 for each file to be replicated. In this example, we add the log file path. 8. Use the Source Tree view to confirm the files to be replicated. The selected source directories and files will be highlighted. Files that are not selected for replication will appear with a lighter file icon: Figure 19 21

22 9. Since this replication will be a one-time replication, you may select Clear All to clear the schedule for this job. The job will be started manually in this case: Figure If there is a copy of the BankOne database currently online on the original SQL Server, detach it using the SQL Enterprise Manager or the sp_detach_db stored procedure so the copy from the standby SQL Server can be replicated back to the original server: Figure 21 22

23 REVERSE REPLICATION OF LIVE DATABASE FILES Because this replication job was configured as a one time job without continuous replication, Replication Exec will replicate updates to the database that occur only during the progress of the replication job. As soon as the replication job finishes, Replication Exec will stop recording updates to the database on the standby server. Thus, the back replicated copy of the database on the original SQL Server will not reflect changes to the standby database made after replication job finishes. There are several alternatives for dealing with this problem: Detach the database: If possible, you should detach the database on the standby system before starting the replication job. This guarantees that no updates will be made to the database while it is being back-replicated. Unfortunately, the database will not be available to clients during the time the replication job is running. Perform one-time replication while database remains online: If the database must stay online on the standby server during replication, you should checkpoint the database before starting the replication job, if possible. Checkpointing the database before replication will flush all committed transactions to disk, making SQL recovery faster on the original SQL Server system when the database is finally put online there. If you cannot checkpoint the database, SQL recovery may take somewhat longer while SQL Server replays its transaction log to make the copy of the database consistent. If the database is to stay online during replication, you should monitor the progress of the replication job and detach the database as soon as the replication job finishes. This will prevent the standby copy of the database from being updated after the files have been replicated back to the original server. Unfortunately, there is still a small window where the standby database may be updated without the updates being replicated back to the original system. These updates are lost, and will not appear in the copy of the database on the original system. CONFIGURE SQL FILE LOCATIONS FOR CONTINUOUS REPLICATION: The best alternative is to configure the replication job in a way that allows you to do continuous replication, yet avoid deleting files from the original SQL Server directories. With continuous replication, you can keep the database online on the standby server until the synchronization phase of the replication job finishes. Then, you can safely detach the database on the standby server, giving only a short interruption to client service. Finally, you can attach the database and put it online on the original server. With a little planning, you can easily configure your SQL Servers to allow this kind of back-replication. The easiest way is to set up your original and standby SQL Servers so the files making up different databases are stored in different directories. This way, you can configure separate replication jobs for each database and the jobs can run as continuous replication jobs. When configured this way, back-replication will not delete any files from the target directories, since the directories contain only files related to a single database. Configuring a back-replication job in this case is very similar to the procedure described in the section entitled Replicating a User-Created SQL Database, with a few minor changes: 1. Since the replication will go in the reverse direction now, reverse the source and target system names when creating the replication pair. 2. Since the back-replication job will be a one-time job, use the Clear All button to clear the entire replication schedule. The back-replication job will be started manually. 3. Make sure that the target directories on the original SQL Server contain only files associated with a single database. It is also OK if the target directories are empty, since the reverse replication job will copy the standby server s database files to them. Start the reverse replication job. When the job finishes the synchronization phase, you should detach the database on the standby SQL Server. The database will be unavailable for client access for a short time. Then 23

24 follow the steps described in the section on Post Replication Tasks to bring the database online on the original server. Remember to stop the reverse replication job as described in that section of the paper. After you have stopped the reverse replication job and attached the database on the original server, you may restart the forward replication job to resume protecting the database. ADDITIONAL APPLICATIONS FOR SQL REPLICATION So far, this paper has discussed the use of Replication Exec to replicate SQL database files to standby servers to protect against loss of a primary server. There are several other interesting uses for Replication Exec replication of SQL databases, which will be outlined here. OFF-HOST CENTRALIZED BACKUP Although replication can be used to protect against server failures, it is also generally good practice to perform periodic backups of SQL databases. These backups can be used to restore a database in the event of data corruption or server failure. In an enterprise with many SQL Servers deployed over a distributed area, it is usually desirable to employ a centralized backup strategy. It is often impractical to attach a device containing backup media, such as a tape library, to each SQL Server. With a centralized backup strategy, one or more backup servers collect and backup data from the SQL servers. These backup servers often have powerful tape libraries attached to them, and can be managed from a central location. One way of moving the SQL data from remote SQL servers to a central location is by using Replication Exec to replicate the data from the SQL servers to the central backup server. With this kind of configuration, you set up a many-to-one replication job, or multiple one-to-one jobs. In either case, the central backup server is configured as the replication target for all the SQL servers. The central backup server then maintains copies of all the SQL data files from all the SQL servers, and can easily backup the files to a tape library or other media. With this method of centralization, running a backup job on the central backup server does not impact the performance of the SQL Servers. 24

25 MIGRATING A DATABASE TO A NEW SERVER Sometimes, in order to expand capacity, you may want to move a database from its original server to a new one. This way, you can spread out the server load among more systems. You can use a Replication Exec replication job to move the files making up a SQL database from the original machine to a new one. The steps are exactly the same as described in the section entitled Replicating a User-Created SQL Database, except now the target server becomes the new server for the selected database, instead of just being a standby server. PUBLISHING COPIES OF A DATABASE You can use a Replication Exec replication job to publish copies of database files to remote servers on a regular basis. In this application, you would configure a one-to-many replication job to distribute database files from a central SQL server to several remote servers. The steps involved are almost the same as configuring a one-toone replication job, except you will specify multiple replication pairs for the job. This type of replication is often used to provide read-only copies of databases to alternate servers for uses such as data mining or reporting. With this kind of a replication job, it is important to make sure you detach the database on the target server while the replication job is running. Otherwise, the data cannot be properly replicated. When the job is finished, you can reattach the database on the target server. Also, since you never back-replicate the data in this kind of job, any database updates on the remote system will simply be discarded the next time the replication job is run. (Replication Exec does not enforce read-only semantics on the replicated database. VERITAS Software Corporation Corporate Headquarters 350 Ellis Street Mountain View, CA or For additional information about VERITAS Software, its products, or the location of an office near you, please call our corporate headquarters or visit our Web site at 25

WHITE PAPER: ENTERPRISE SOLUTIONS. Symantec Backup Exec Continuous Protection Server Continuous Protection for Microsoft SQL Server Databases

WHITE PAPER: ENTERPRISE SOLUTIONS. Symantec Backup Exec Continuous Protection Server Continuous Protection for Microsoft SQL Server Databases WHITE PAPER: ENTERPRISE SOLUTIONS Symantec Backup Exec Continuous Protection Server Continuous Protection for Microsoft SQL Server Databases White Paper: Enterprise Solutions Symantec Backup Exec Continuous

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

High Availability for Microsoft SQL Server 2000 Using Double-Take

High Availability for Microsoft SQL Server 2000 Using Double-Take High Availability for Microsoft SQL Server 2000 Using Double-Take High Availability for Microsoft SQL Server 2000 Using Double-Take Revision 3.0.0 published July 2003 NSI and Double-Take are registered

More information

Support Document: Microsoft SQL Server - LiveVault 7.6X

Support Document: Microsoft SQL Server - LiveVault 7.6X Contents Preparing to create a Microsoft SQL backup policy... 2 Adjusting the SQL max worker threads option... 2 Preparing for Log truncation... 3 Best Practices... 3 Microsoft SQL Server 2005, 2008, or

More information

CA XOsoft Replication for Windows

CA XOsoft Replication for Windows CA XOsoft Replication for Windows Microsoft SQL Server Operation Guide r12.5 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the

More information

VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide

VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide N109548 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software Corporation makes

More information

VERITAS Backup Exec TM 10.0 for Windows Servers

VERITAS Backup Exec TM 10.0 for Windows Servers VERITAS Backup Exec TM 10.0 for Windows Servers Quick Installation Guide N134418 July 2004 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software

More information

Troubleshooting Failover in Cisco Unity 8.x

Troubleshooting Failover in Cisco Unity 8.x CHAPTER 16 Troubleshooting Failover in Cisco Unity 8.x This chapter describes methods for troubleshooting Cisco Unity failover. See the following sections: Failover Configuration Wizard Does Not Finish

More information

Moving the Web Security Log Database

Moving the Web Security Log Database Moving the Web Security Log Database Topic 50530 Web Security Solutions Version 7.7.x, 7.8.x Updated 22-Oct-2013 Version 7.8 introduces support for the Web Security Log Database on Microsoft SQL Server

More information

SQL Server Database Administrator s Guide

SQL Server Database Administrator s Guide SQL Server Database Administrator s Guide Copyright 2011 Sophos Limited. All rights reserved. No part of this publication may be reproduced, stored in retrieval system, or transmitted, in any form or by

More information

GO!NotifyLink. Database Maintenance. GO!NotifyLink Database Maintenance 1

GO!NotifyLink. Database Maintenance. GO!NotifyLink Database Maintenance 1 GO!NotifyLink Database Maintenance GO!NotifyLink Database Maintenance 1 Table of Contents Database Maintenance 3 Database Cleanup... 3 Database Backups... 3 Database Configuration... 4 The Procedure via

More information

Drobo How-To Guide. What You Will Need. Configure Replication for DR Using Double-Take Availability and Drobo iscsi SAN

Drobo How-To Guide. What You Will Need. Configure Replication for DR Using Double-Take Availability and Drobo iscsi SAN This document shows you how to use Drobo iscsi SAN storage with Double-Take Availability to deliver replication and DR for servers and applications. Double-Take Availability from Vision Solutions performs

More information

Database Migration and Management Guide v15.0

Database Migration and Management Guide v15.0 Database Migration and Management Guide v15.0 Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2005 Express Edition to Microsoft SQL Server 2005 or 2008 Enterprise, Standard, or Workgroup

More information

WhatsUp Gold v16.0 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2005 Express

WhatsUp Gold v16.0 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2005 Express WhatsUp Gold v16.0 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2005 Express Edition or SQL Server 2008 Express R2 to Microsoft SQL Server

More information

Table of Contents. CHAPTER 1 About This Guide... 9. CHAPTER 2 Introduction... 11. CHAPTER 3 Database Backup and Restoration... 15

Table of Contents. CHAPTER 1 About This Guide... 9. CHAPTER 2 Introduction... 11. CHAPTER 3 Database Backup and Restoration... 15 Table of Contents CHAPTER 1 About This Guide......................... 9 The Installation Guides....................................... 10 CHAPTER 2 Introduction............................ 11 Required

More information

WANSync SQL Server. Operations Guide

WANSync SQL Server. Operations Guide WANSync SQL Server Operations Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only

More information

SQL Server Protection

SQL Server Protection User Guide BackupAssist User Guides explain how to create and modify backup jobs, create backups and perform restores. These steps are explained in more detail in a guide s respective whitepaper. Whitepapers

More information

WhatsUp Gold v16.2 Database Migration and Management Guide

WhatsUp Gold v16.2 Database Migration and Management Guide WhatsUp Gold v16.2 Database Migration and Management Guide Contents CHAPTER 1 How to use this guide CHAPTER 2 Migrating the WhatsUp Gold Microsoft SQL Server 2008 R2 Express Edition database to Microsoft

More information

Upgrading Good Mobile Messaging and Good Mobile Control Servers

Upgrading Good Mobile Messaging and Good Mobile Control Servers Good Mobile Messaging Server 8.1.6 Good Mobile Control Server 2.6.4 for IBM Lotus Domino Upgrading Good Mobile Messaging and Good Mobile Control Servers Updated: 09/25/15 1 Introduction 1 2 Pre-Upgrade

More information

Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED.

Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED. Installation Guide Lenel OnGuard 2009 Installation Guide, product version 6.3. This guide is item number DOC-110, revision 1.038, May 2009 Copyright 1992-2009 Lenel Systems International, Inc. Information

More information

TMS Database Knowledge Tips

TMS Database Knowledge Tips TMS Database Knowledge Tips Tips for the TMS SQL Database June 2008 D14216 Rev 1.0 TABLE OF CONTENTS TABLE OF CONTENTS... 2 DOCUMENT REVISION HISTORY... 4 INTRODUCTION... 5 Tip Format... 5 1 TIPS CATEGORY

More information

Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012.

Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012. Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012. Copyright 1995-2012 Lenel Systems International, Inc. Information

More information

VERITAS NetBackup 6.0 for Microsoft Exchange Server

VERITAS NetBackup 6.0 for Microsoft Exchange Server VERITAS NetBackup 6.0 for Microsoft Exchange Server System Administrator s Guide for Windows N152688 September 2005 Disclaimer The information contained in this publication is subject to change without

More information

Hyperoo 2 User Guide. Hyperoo 2 User Guide

Hyperoo 2 User Guide. Hyperoo 2 User Guide 1 Hyperoo 2 User Guide 1 2 Contents How Hyperoo Works... 3 Installing Hyperoo... 3 Hyperoo 2 Management Console... 4 The Hyperoo 2 Server... 5 Creating a Backup Array... 5 Array Security... 7 Previous

More information

How To Upgrade Your Microsoft SQL Server for Accounting CS Version 2012.1

How To Upgrade Your Microsoft SQL Server for Accounting CS Version 2012.1 How To Upgrade Your Microsoft SQL Server for Version 2012.1 The first step is to gather important information about your existing configuration. Identify The Database Server and SQL Server Version The

More information

WhatsUp Gold v16.1 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2008 R2 Express

WhatsUp Gold v16.1 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2008 R2 Express WhatsUp Gold v16.1 Database Migration and Management Guide Learn how to migrate a WhatsUp Gold database from Microsoft SQL Server 2008 R2 Express Edition to Microsoft SQL Server 2005, 2008, or 2008 R2

More information

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On Remote Drive PC Client software User Guide -Page 1 of 27- PRIVACY, SECURITY AND PROPRIETARY RIGHTS NOTICE: The Remote Drive PC Client software is third party software that you can use to upload your files

More information

High Availability for Microsoft SQL Server 7.0 Using Double-Take

High Availability for Microsoft SQL Server 7.0 Using Double-Take High Availability for Microsoft SQL Server 7.0 Using Double-Take High Availability for Microsoft SQL Server 7.0 Using Double-Take Revision 3.0.0 published July 2003 NSI and Double-Take are registered trademarks

More information

Reconfiguring VMware vsphere Update Manager

Reconfiguring VMware vsphere Update Manager Reconfiguring VMware vsphere Update Manager vsphere Update Manager 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

Database Backup Datacolor Match Pigment and Datacolor Tools

Database Backup Datacolor Match Pigment and Datacolor Tools Database Backup Datacolor Match Pigment and Datacolor Tools Both Datacolor Match Pigment and Datacolor Tools use the Sybase Adaptive Server database management system. The document will explain the different

More information

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server CA RECOVERY MANAGEMENT R12.5 BEST PRACTICE CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server Overview Benefits The CA Advantage The CA ARCserve Backup Support and Engineering

More information

SQL Server Protection Whitepaper

SQL Server Protection Whitepaper SQL Server Protection Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 The benefits of using the SQL Server Add-on... 2 Requirements... 2 2. SQL Protection overview... 3 User databases...

More information

EXPRESSCLUSTER X for Windows Quick Start Guide for Microsoft SQL Server 2014. Version 1

EXPRESSCLUSTER X for Windows Quick Start Guide for Microsoft SQL Server 2014. Version 1 EXPRESSCLUSTER X for Windows Quick Start Guide for Microsoft SQL Server 2014 Version 1 NEC EXPRESSCLUSTER X 3.x for Windows SQL Server 2014 Quick Start Guide Document Number ECX-MSSQL2014-QSG, Version

More information

WhatsUp Gold v16.3 Installation and Configuration Guide

WhatsUp Gold v16.3 Installation and Configuration Guide WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard

More information

Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide

Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide Symantec Backup Exec TM 11d for Windows Servers Quick Installation Guide September 2006 Symantec Legal Notice Copyright 2006 Symantec Corporation. All rights reserved. Symantec, Backup Exec, and the Symantec

More information

Portions of this product were created using LEADTOOLS 1991-2010 LEAD Technologies, Inc. ALL RIGHTS RESERVED.

Portions of this product were created using LEADTOOLS 1991-2010 LEAD Technologies, Inc. ALL RIGHTS RESERVED. Installation Guide Lenel OnGuard 2010 Installation Guide, product version 6.4. This guide is item number DOC-110, revision 1.045, May 2010 Copyright 1995-2010 Lenel Systems International, Inc. Information

More information

Introduction. There are several bits of information that must be moved:

Introduction. There are several bits of information that must be moved: Backup and restore on new hardware XProtect Professional VMS Products 2014: XProtect Enterprise 2014, XProtect Professional 2014, XProtect Express 2014, XProtect Essential 2014 Introduction This document

More information

EVault for Data Protection Manager. Course 321 Protecting Exchange 2010 with DPM

EVault for Data Protection Manager. Course 321 Protecting Exchange 2010 with DPM EVault for Data Protection Manager Course 321 Protecting Exchange 2010 with DPM Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers

More information

SQL Server Protection. User guide

SQL Server Protection. User guide User guide Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Requirements... 2 2. SQL Protection overview... 3 Backup destinations... 3 Transaction logs... 3 Hyper-V backups... 4 SQL database

More information

How to Create a Delegated Administrator User Role / To create a Delegated Administrator user role Page 1

How to Create a Delegated Administrator User Role / To create a Delegated Administrator user role Page 1 Managing user roles in SCVMM How to Create a Delegated Administrator User Role... 2 To create a Delegated Administrator user role... 2 Managing User Roles... 3 Backing Up and Restoring the VMM Database...

More information

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide Copyright and Trademark Statements 2014 ViewSonic Computer Corp. All rights reserved. This document contains proprietary information that

More information

Arcserve Backup for Windows

Arcserve Backup for Windows Arcserve Backup for Windows Agent for Microsoft SharePoint Server Guide r16 Pre-release Document, only for reference This Documentation, which includes embedded help systems and electronically distributed

More information

VMware Mirage Web Manager Guide

VMware Mirage Web Manager Guide Mirage 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,

More information

High Availability for Microsoft SQL Server Using Double-Take 4.x

High Availability for Microsoft SQL Server Using Double-Take 4.x High Availability for Microsoft SQL Server Using Double-Take 4.x High Availability for Microsoft SQL Server Using Double-Take 4.x published January 2003 NSI and Double-Take are registered trademarks of

More information

Backup / migration of a Coffalyser.Net database

Backup / migration of a Coffalyser.Net database Backup / migration of a Coffalyser.Net database There are two main procedures for backup or migration of your Coffalyser.Net database. One of these procedures makes use of the SQL management studio software

More information

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Windows 2000, Windows Server 2003 5.0 11293743 Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Copyright

More information

Symantec Backup Exec 12.5 for Windows Servers. Quick Installation Guide

Symantec Backup Exec 12.5 for Windows Servers. Quick Installation Guide Symantec Backup Exec 12.5 for Windows Servers Quick Installation Guide 13897290 Installing Backup Exec This document includes the following topics: System requirements Before you install About the Backup

More information

How to protect, restore and recover SQL 2005 and SQL 2008 Databases

How to protect, restore and recover SQL 2005 and SQL 2008 Databases How to protect, restore and recover SQL 2005 and SQL 2008 Databases Introduction This document discusses steps to set up SQL Server Protection Plans and restore protected databases using our software.

More information

VMware vcenter Configuration Manager Backup and Disaster Recovery Guide vcenter Configuration Manager 5.7

VMware vcenter Configuration Manager Backup and Disaster Recovery Guide vcenter Configuration Manager 5.7 VMware vcenter Configuration Manager Backup and Disaster Recovery Guide vcenter Configuration Manager 5.7 This document supports the version of each product listed and supports all subsequent versions

More information

DSS Support Backup / Restore DSS Databases using Windows Backup Windows XP Windows 2003 Server

DSS Support Backup / Restore DSS Databases using Windows Backup Windows XP Windows 2003 Server DSS Support Backup / Restore DSS Databases using Windows Backup Windows XP Windows 2003 Server Author: Jason May Revision 2.0 Revision Date 03/2009 Page 1 of 17 Overview The purpose of the document is

More information

VirtualCenter Database Maintenance VirtualCenter 2.0.x and Microsoft SQL Server

VirtualCenter Database Maintenance VirtualCenter 2.0.x and Microsoft SQL Server Technical Note VirtualCenter Database Maintenance VirtualCenter 2.0.x and Microsoft SQL Server This document discusses ways to maintain the VirtualCenter database for increased performance and manageability.

More information

NovaBACKUP xsp Version 12.2 Upgrade Guide

NovaBACKUP xsp Version 12.2 Upgrade Guide NovaBACKUP xsp Version 12.2 Upgrade Guide NovaStor / August 2011 Rev 20110815 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications

More information

Installing RMFT on an MS Cluster

Installing RMFT on an MS Cluster Installing RMFT on an MS Cluster RMFT Software Version 2.4.3 Supported on: Windows Server 2003 Enterprise Edition Windows Server 2000 Advanced Windows Server 2003 Datacenter Edition Windows Server 2008

More information

vcenter Configuration Manager Backup and Disaster Recovery Guide VCM 5.3

vcenter Configuration Manager Backup and Disaster Recovery Guide VCM 5.3 vcenter Configuration Manager Backup and Disaster Recovery Guide VCM 5.3 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

Keep SQL Service Running On Replica Member While Replicating Data In Realtime

Keep SQL Service Running On Replica Member While Replicating Data In Realtime Page 1 of 7 Keep SQL Service Running On Replica Member While Replicating Data In Realtime ClusterReplica Enterprise resolves the issue by redirect the data in real-time data replication to a temporary

More information

SQL Tuning and Maintenance for the Altiris Deployment Server express database.

SQL Tuning and Maintenance for the Altiris Deployment Server express database. Article ID: 22953 SQL Tuning and Maintenance for the Altiris Deployment Server express database. Question Now Deployment Server is installed how do I manage the express database? Topics that will be covered

More information

Dovico Timesheet v12 INSTALLATION GUIDE

Dovico Timesheet v12 INSTALLATION GUIDE v12 TABLE OF CONTENTS System Requirements... 1 NEW INSTALLATION... 2 UPGRADE from a previous version of Dovico Timesheet 5 System Requirements Deployment Options Either installed on your server or use

More information

Backups and Maintenance

Backups and Maintenance Backups and Maintenance Backups and Maintenance Objectives Learn how to create a backup strategy to suit your needs. Learn how to back up a database. Learn how to restore from a backup. Use the Database

More information

SQL Server Setup for Assistant/Pro applications Compliance Information Systems

SQL Server Setup for Assistant/Pro applications Compliance Information Systems SQL Server Setup for Assistant/Pro applications Compliance Information Systems The following document covers the process of setting up the SQL Server databases for the Assistant/PRO software products form

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

VMware vcenter Configuration Manager Backup and Disaster Recovery Guide vcenter Configuration Manager 5.4.1

VMware vcenter Configuration Manager Backup and Disaster Recovery Guide vcenter Configuration Manager 5.4.1 VMware vcenter Configuration Manager Backup and Disaster Recovery Guide vcenter Configuration Manager 5.4.1 This document supports the version of each product listed and supports all subsequent versions

More information

SQL Express to SQL Server Database Migration MonitorIT v10.5

SQL Express to SQL Server Database Migration MonitorIT v10.5 SQL Express to SQL Server Database Migration MonitorIT v10.5 (v10.5) March 2013 www.goliathtechnologies.com Legal Notices MonitorIT v10.5 Installation Guide Inc. All rights reserved. www.goliathtechnologies.com

More information

VERITAS Replication Exec USING REPLICATION EXEC TO PROTECT MICROSOFT EXCHANGE 5.5, 2000 AND 2003 DATABASES

VERITAS Replication Exec USING REPLICATION EXEC TO PROTECT MICROSOFT EXCHANGE 5.5, 2000 AND 2003 DATABASES VERITAS Replication Exec USING REPLICATION EXEC TO PROTECT MICROSOFT EXCHANGE 5.5, 2000 AND 2003 DATABASES 1 TABLE OF CONTENTS USING REPLICATION EXEC TO PROTECT MICROSOFT EXCHANGE 5.5, 2000 AND 2003 DATABASES...1

More information

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training QAD Enterprise Applications Training Guide Demand Management 6.1 Technical Training 70-3248-6.1 QAD Enterprise Applications February 2012 This document contains proprietary information that is protected

More information

BackupAssist v6 quickstart guide

BackupAssist v6 quickstart guide New features in BackupAssist v6... 2 VSS application backup (Exchange, SQL, SharePoint)... 3 System State backup... 3 Restore files, applications, System State and mailboxes... 4 Fully cloud ready Internet

More information

Cluster to Cluster Failover Using Double-Take

Cluster to Cluster Failover Using Double-Take Cluster to Cluster Failover Using Double-Take Cluster to Cluster Failover Using Double-Take Revision 2.2.0 published March 2004 Double-Take, GeoCluster and NSI are registered trademarks of NSI Software,

More information

Symantec Backup Exec 2010 R2. Quick Installation Guide

Symantec Backup Exec 2010 R2. Quick Installation Guide Symantec Backup Exec 2010 R2 Quick Installation Guide 20047221 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement.

More information

Deploying System Center 2012 R2 Configuration Manager

Deploying System Center 2012 R2 Configuration Manager Deploying System Center 2012 R2 Configuration Manager This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT.

More information

Upgrading from MSDE to SQL Server 2005 Express Edition with Advanced Services SP2

Upgrading from MSDE to SQL Server 2005 Express Edition with Advanced Services SP2 Upgrading from MSDE to SQL Server 2005 Express Edition with Advanced Services SP2 Installation and Configuration Introduction This document will walk you step by step in removing MSDE and the setup and

More information

SteelEye Protection Suite for Windows Microsoft SQL Server Recovery Kit. Administration Guide

SteelEye Protection Suite for Windows Microsoft SQL Server Recovery Kit. Administration Guide SteelEye Protection Suite for Windows Microsoft SQL Server Recovery Kit Administration Guide June 2013 This document and the information herein is the property of SIOS Technology Corp. (previously known

More information

Table of Contents. FleetSoft Installation Guide

Table of Contents. FleetSoft Installation Guide FleetSoft Installation Guide Table of Contents FleetSoft Installation Guide... 1 Minimum System Requirements... 2 Installation Notes... 3 Frequently Asked Questions... 4 Deployment Overview... 6 Automating

More information

User Migration Tool. Note. Staging Guide for Cisco Unified ICM/Contact Center Enterprise & Hosted Release 9.0(1) 1

User Migration Tool. Note. Staging Guide for Cisco Unified ICM/Contact Center Enterprise & Hosted Release 9.0(1) 1 The (UMT): Is a stand-alone Windows command-line application that performs migration in the granularity of a Unified ICM instance. It migrates only Unified ICM AD user accounts (config/setup and supervisors)

More information

Spector 360 Deployment Guide. Version 7

Spector 360 Deployment Guide. Version 7 Spector 360 Deployment Guide Version 7 December 11, 2009 Table of Contents Deployment Guide...1 Spector 360 DeploymentGuide... 1 Installing Spector 360... 3 Installing Spector 360 Servers (Details)...

More information

DeltaV Event Chronicle

DeltaV Event Chronicle January 2013 Page 1 This document provides information on how to configure, use, and manage the. www.deltav.com January 2013 Page 2 Table of Contents Introduction... 3 Database Technology... 3 Database

More information

Matisse Installation Guide for MS Windows. 10th Edition

Matisse Installation Guide for MS Windows. 10th Edition Matisse Installation Guide for MS Windows 10th Edition April 2004 Matisse Installation Guide for MS Windows Copyright 1992 2004 Matisse Software Inc. All Rights Reserved. Matisse Software Inc. 433 Airport

More information

Cluster to Cluster Failover Using Double-Take

Cluster to Cluster Failover Using Double-Take Cluster to Cluster Failover Using Double-Take Cluster to Cluster Failover Using Double-Take published August 2001 NSI and Double-Take are registered trademarks of Network Specialists, Inc. GeoCluster is

More information

WhatsUp Gold v16.1 Installation and Configuration Guide

WhatsUp Gold v16.1 Installation and Configuration Guide WhatsUp Gold v16.1 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.1 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines

More information

Symantec Backup Exec 2014 Icon List

Symantec Backup Exec 2014 Icon List Symantec Backup Exec 2014 Icon List Alerts Image Description Alert needs attention Alerts Alert needs attention Alert needs attention Alert needs attention Error Error Error Error Informational alert Informational

More information

Reporting Installation Guide

Reporting Installation Guide Reporting Installation Guide Websense Enterprise Websense Web Security Suite TM v6.3.1 1996 2007, Websense, Inc. All rights reserved. 10240 Sorrento Valley Rd., San Diego, CA 92121, USA Published April

More information

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec

StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright 2008-2011. All rights reserved. No

More information

Juris Installation / Upgrade Guide

Juris Installation / Upgrade Guide Juris Installation / Upgrade Guide Version 2.7 2015 LexisNexis. All rights reserved. Copyright and Trademark LexisNexis, Lexis, and the Knowledge Burst logo are registered trademarks of Reed Elsevier Properties

More information

for Networks Installation Guide for the application on a server September 2015 (GUIDE 2) Memory Booster version 1.3-N and later

for Networks Installation Guide for the application on a server September 2015 (GUIDE 2) Memory Booster version 1.3-N and later for Networks Installation Guide for the application on a server September 2015 (GUIDE 2) Memory Booster version 1.3-N and later Copyright 2015, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

Table of Contents Introduction... 2 Azure ADSync Requirements/Prerequisites:... 2 Software Requirements... 2 Hardware Requirements...

Table of Contents Introduction... 2 Azure ADSync Requirements/Prerequisites:... 2 Software Requirements... 2 Hardware Requirements... Table of Contents Introduction... 2 Azure ADSync Requirements/Prerequisites:... 2 Software Requirements... 2 Hardware Requirements... 2 Service Accounts for Azure AD Sync Tool... 3 On Premises Service

More information

VSS Backup Solution for Exchange Server 2007 and Symantec Backup Exec 12.5 using ETERNUS VSS Hardware Provider

VSS Backup Solution for Exchange Server 2007 and Symantec Backup Exec 12.5 using ETERNUS VSS Hardware Provider VSS Backup Solution for Exchange Server 2007 and Symantec Backup Exec 12.5 using ETERNUS VSS Hardware Provider System Configuration Guide November 2009 Fujitsu Limited Table of Contents 1. Executive Summary...

More information

SELF SERVICE RESET PASSWORD MANAGEMENT BACKUP GUIDE

SELF SERVICE RESET PASSWORD MANAGEMENT BACKUP GUIDE SELF SERVICE RESET PASSWORD MANAGEMENT BACKUP GUIDE Copyright 1998-2015 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by

More information

TM Online Storage: StorageSync

TM Online Storage: StorageSync TM Online Storage: StorageSync 1 Part A: Backup Your Profile 1: How to download and install StorageSync? Where to download StorageSync? You may download StorageSync from your e-storage account. Please

More information

High Availability for VMware GSX Server

High Availability for VMware GSX Server High Availability for GSX Server High Availability for GSX Server Revision 1.1.0 published January 2005, GeoCluster, and NSI are registered trademarks of NSI Software, Inc. Balance is a trademark of NSI

More information

1 of 10 1/31/2014 4:08 PM

1 of 10 1/31/2014 4:08 PM 1 of 10 1/31/2014 4:08 PM copyright 2014 How to backup Microsoft SQL Server with Nordic Backup Pro Before creating a SQL backup set within Nordic Backup Pro it is first necessary to verify that the settings

More information

CA ARCserve Replication and High Availability for Windows

CA ARCserve Replication and High Availability for Windows CA ARCserve Replication and High Availability for Windows Microsoft SQL Server Operation Guide r15 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation")

More information

DBMoto 6.5 Setup Guide for SQL Server Transactional Replications

DBMoto 6.5 Setup Guide for SQL Server Transactional Replications DBMoto 6.5 Setup Guide for SQL Server Transactional Replications Copyright This document is copyrighted and protected by worldwide copyright laws and treaty provisions. No portion of this documentation

More information

Backup Exec 15. Quick Installation Guide

Backup Exec 15. Quick Installation Guide Backup Exec 15 Quick Installation Guide 21344987 Documentation version: 15 PN: 21344987 Legal Notice Copyright 2015 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, the Checkmark

More information

SafeCom G2 Enterprise Disaster Recovery Manual

SafeCom G2 Enterprise Disaster Recovery Manual SafeCom G2 Enterprise Disaster Recovery Manual D60612-06 September 2009 Trademarks: SafeCom, SafeCom Go, SafeCom P:Go, SafeCom OnLDAP, SafeCom epay and the SafeCom logo are trademarks of SafeCom a/s. Company

More information

Server Migration Guide

Server Migration Guide Professional Data Services 1632 East 23 rd Avenue Hutchinson, KS 67502 Toll-free: 800.875.0480 Fax: 858.486.5493 www.mdsuite.com Server Migration Guide Last Updated: May 2014 Introduction As the computer

More information

Remote Management System

Remote Management System RMS Copyright and Distribution Notice November 2009 Copyright 2009 ARTROMICK International, Inc. ALL RIGHTS RESERVED. Published 2009. Printed in the United States of America WARNING: ANY UNAUTHORIZED

More information

SAM Server Utility User s Guide

SAM Server Utility User s Guide SAM Server Utility User s Guide Updated May 2012 Copyright 2010, 2012 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. PDF0157 (PDF) SCHOLASTIC, READ 180, SYSTEM 44, SCHOLASTIC EXPERT

More information

Server Installation: ServerTools

Server Installation: ServerTools Server Installation: ServerTools ServerTools Page 1 Table of Contents To Install ServerTools...3 Backup and Restore...6 Purpose...6 Background...6 Requirements...6 Creating a Backup Schedule using the

More information

SolarWinds Migrating SolarWinds NPM Technical Reference

SolarWinds Migrating SolarWinds NPM Technical Reference SolarWinds Migrating SolarWinds NPM Technical Reference Copyright 1995-2015 SolarWinds Worldwide, LLC. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified,

More information

ecopy ShareScan 5.0 SQL installs guide

ecopy ShareScan 5.0 SQL installs guide ecopy ShareScan 5.0 SQL installs guide Created by Rob O Leary, 3/28/2011 5.0 SQL installs guide 2 ShareScan 5.0 has two SQL setup types: Complete: Installs and connects the local MS SQL Server 2008 Express

More information

VERITAS NetBackup 6.0

VERITAS NetBackup 6.0 VERITAS NetBackup 6.0 Backup, Archive, and Restore Getting Started Guide for UNIX, Windows, and Linux N15278C September 2005 Disclaimer The information contained in this publication is subject to change

More information