Microsoft SQL Server Guide. Best Practices and Backup Procedures

Size: px
Start display at page:

Download "Microsoft SQL Server Guide. Best Practices and Backup Procedures"

Transcription

1 Microsoft SQL Server Guide Best Practices and Backup Procedures

2 Constellation HomeBuilder Systems Inc. This document is copyrighted and all rights are reserved. This document may not, in whole or in part, be copied, photocopied, translated, or reduced to any electronic medium or machine- readable form without prior consent, in writing, from Constellation HomeBuilder Systems Inc. The information in this document is subject to change without notice and should not be construed as a commitment by Constellation HomeBuilder Systems Inc. Constellation HomeBuilder Systems Inc. assumes no responsibility for any errors that may appear in this document. Printed in Canada February 2011 Product names are trademarks or registered trademarks of their respective manufacturers. Copyright Constellation HomeBuilder Systems Inc., All Rights Reserved.

3 Table of Contents Best Practices...2 Preparation for MS SQL Server Installation...2 Disks...2 CPU...2 Memory...2 MS SQL Server Installation options...2 Collation...2 Authentication...2 Services...2 Instance Options...3 Memory allocation...3 Authentication...3 Microsoft SQL Server Configuration Manager...3 Network Configuration...3 sa user...3 Database Options...3 Database files...3 Recovery Model...4 Auto_Shrink...4 Auto_Close...4 Page Verification...5 High Availability...5 Backup Procedure...5 MS SQL Server MS SQL Server 2005 and above Daily Routine Help Desk Information... 20

4 Best Practices This section of document has outlined the recommended best practices to use for SQL Server installation and configuration. The document is a compilation of most common asked questions. The content of this document will change without notice based on recommended changes from Microsoft, Progress and NEWSTAR technical staff. Preparation for MS SQL Server Installation This section is meant to help prepare for MS SQL Server installation and questions about hardware on the server. For detailed recommended specifications for the server to be used for NEWSTAR Applications please see the Technical Specification guide found here. Disks There are three MS SQL Server components that need to account for: System databases, NEWSTAR databases and backups. System databases such as TempDB are important because SQL Server uses these databases to perform internal operations. For example TempDB is used for sorting purposes. Depending on the size and number of NEWSTAR databases disk space needs to be considered for current, future growth and backup of the databases. It is important to place the system databases on a separate disks than the NEWSTAR databases for performance reasons. At this time it is recommended to use 10K or 15K SAS drives. CPU Microsoft SQL Server can take up large portions of CPU time depending on the number of uses and databases. Memory The default behavior of MS SQL Server is to load as much of the database as it is allowed to memory to speed up the queries. As result it is recommended to have adequate memory on the server to support both MS SQL Server and the operating system. MS SQL Server Installation options Collation It is essential to choose Latin1_General_CP1_CI_AS which is a case insensitive collation. Choosing a case sensitive collation will force MS SQL Server to look for upper or lower case for all columns and data which in turn could prevent the users from seeing certain information in the database. Authentication The type of Authentication must be set to Mixed Mode. Although NEWSTAR Sales is usually deployed using Windows Authentication but NEWSTAR Enterprise uses SQL Authentication to connect to the SQL database. Services If you are using MS SQL Server 2000 then you will have to manually change the user after the installation is completed. It is recommended that a user be created on the Active Directory with is part of Domain Users group. You must make sure the user that you are using for the service is part of the sysdba role on the MS SQL Server. Microsoft SQL Server Guide Best Practices and Backup Procedures 2

5 Instance Options Memory allocation As mentioned in the Preparation section the default behavior of MS SQL Server is to load as much of the database as it is allowed to memory to speed up the queries. However this could cause potential issues if you using the server for other purposes than hosting the MS SQL Server or if you do not have too much memory available. For example if you are hosting NEWSTAR Enterprise SQL application and databases on a server with 4GB RAM. The issues occurs when MS SQL Server acquires most of the memory available on the server and as result the other processes such as operating system processes will not have the memory they need to function normally. Authentication The type of Authentication must be set to Mixed Mode which allows for both Windows Authentication and SQL Authentication. Although NEWSTAR Sales is usually deployed using Windows Authentication but NEWSTAR Enterprise uses SQL Authentication to connect to the SQL database. Microsoft SQL Server Configuration Manager Microsoft introduced Configuration Manager with Microsoft SQL Server 2005 in order to help manage all services and SQL Server s access methods through one utility. All Start/Stop, changes to services and modification to access methods should be done through this utility to ensure all the proper procedures are followed in starting, stopping and modifications. Network Configuration Microsoft SQL Server has the ability to listen and process commands and queries from several methods such as Shared Memory, TCP/IP and net pipe. NEWSTAR requires TCP/IP as the method to access the MS SQL Server and it is recommended to turn off any other method if it is not needed. This would drastically limit the number of ways a harmful application such as virus to have access to the SQL Server instance. The options can be accessed and changed through Microsoft SQL Server Configuration Manager for MS SQL Server 2005 and above and Server and Client Network utility for MS SQL Server sa user The sa user is a special user that comes built in with MS SQL Server and it is part of the sysdba role which has access to all objects and resources within the MS SQL Server. Therefore this user is the target for most viruses and hackers and as result it is important to protect the access to this user by all means necessary. The very first step to protect this use is to set up a strong password for the user. The installation will ask for a password to be set for the user but using a strong password is not enforced until MS SQL Server The second step is to rename the user from sa to another name which is harder to guess. This task can be accomplished by running the following command against the MS SQL Server. Please note that only members of sysdba role are able to rename sa account. ALTER LOGIN sa WITH NAME = [newsaaccountname]; NEWSTAR does not recommend disabling the sa user. Database Options Database files There are two categories of database files in MS SQL Server: Data files and Transaction Logs. The data files are grouped in File Groups. Both of these files are important because: Microsoft SQL Server Guide Best Practices and Backup Procedures 3

6 1. All the database content are in these files 2. Database recovery can be maximized depending on the configuration of these files 3. The performance of the database is measured by the through put on the transaction logs The first data file in the database usually has the extension of mdf and rest of the files have extension of ndf. The transaction log has the extension of ldf. Note that the extension are not enforced by SQL Server and these are only the recommended extensions by Microsoft since it would help other technical staff recognize the types of files immediately. It is important to note that Microsoft SQL Server spawns a new thread for every data file which can help boost the performance for large databases. Creating more than one data file is not recommended for smaller databases as it causes more maintenance than it is truly worth. The allocation and the rate of growth of the database files is very important as it could cause performance issues. By default NEWSTAR technicians will set the rate of growth to 10% which means that the Microsoft SQL Server will acquire 10% of current size of the file whenever the file fills up. It s important to have plenty of available disk space on the server. If the database is not able to acquire more disk space then the transactions will rollback. Recovery Model Recovery Model options allows administrators to define the behavior of the transaction logs and as such it affects the backup strategy. There are three different types of Recovery Models: 1. Full This is the Microsoft recommended model since it maximizes the ability to recover data when proper steps are taken in events such as database crash or corruption on page. The downside of this method is that unless you have set up transaction log backups then the file grows exponentially (depending on number of transactions) since every transaction is writing to the log and it is not removed until a backup is taken. There have been cases where NEWSTAR technicians had to deal with transaction logs that had grown to 30 GB for a 4 GB database. NEWSTAR recommends this recovery model for clients with larger databases who have IT staff with SQL Server administration knowledge. 2. Bulk logged This recovery model is the same as Full recovery model with two exceptions: - The imports using bcp and other load utilities are not recorded to the transaction log - Administrator is not able to recover data to a point in time Please note that NEWSTAR does not recommend using this model. 3. Simple This recovery model will force SQL Server to clear the committed transactions from the transaction log and therefore the log file does not grow as big. This model requires much less maintenance and disk space. By default NEWSTAR database will use Simple recovery model and it is recommended to be kept as such for smaller databases that handle lower number of transactions. Auto_Shrink This option is self-explanatory. It attempts to release any free space in the database back to the operating system. The problem with this option is that it will cause unnecessary I/O and in most cases MS SQL Server has to acquire the same amount space that was freed up moments after it was released. This option can cause major performance degradation and should be turned off. Auto_Close This option will force SQL Server to close the database and flush the procedure cache after each connection and as result can cause major performance degradation on the SQL Server. This option must be turned off. Microsoft SQL Server Guide Best Practices and Backup Procedures 4

7 Page Verification The Page Verify option allows SQL Server to perform a verification test to make sure the pages read and written to disk are valid. SQL Server 2000 allows only Torn Page Detection and the check mark must be selected. As of SQL Server 2005 administrators are allowed to choose between Torn Page Detection and CheckSum verification process. Microsoft recommends using CheckSum for all databases on SQL Server 2005 or later. If a page is corrupted or missing an entry in the error log is created by the page verification process. Administrators can set up notifications to be sent to them if such errors are found. High Availability There are several points that administrators should take note of in event where they are asked to implement replication, log shipping or database mirroring for NEWSTAR databases: o o o As part of the standard schema NEWSTAR databases have primary key set up which you will need to set up the replication. For NEWSTAR Enterprise the primary key is on PROGRESS_RECID_IDENT_ NEWSTAR Sales and other products the location of primary key vary on each table. The replication or high availability option must completely be removed before using Constellation Updater to update the datasets. If it is not removed then it creates a lock on objects and Constellation Updater is not able to update the schema and as result the update will fail. It is important to plan the high availability solution before implementing and gather all requirements from the users. E.g. is the high availability solution is meant to provide redundancy for the database or only for reporting purposes? What is the acceptable loss of data in event of a database crash? Backup Procedure MS SQL Server Check that you have access to the Database server with administrative rights. 2. The MS SQL 2000 Server Agent must be running (the application, which is responsible for backup). There are 2 simple ways to check it: From the Start menu: i. Click Programs > Microsoft SQL Server > Service Manager The MS SQL icon should appear on the right bottom side of your screen, ii. Double click. The MS SQL Server Service Manager Console opens. Microsoft SQL Server Guide Best Practices and Backup Procedures 5

8 3. From Services drop-down list, select SQL Server Agent: 4. Select the Auto-start service when OS starts check box. 5. Click Start/Continue. The green arrow icon must be visible indicating that service is running. 6. Close the SQL Server Service Manager screen. 7. From the Start menu, click Programs > Microsoft SQL Server > Enterprise Manager. The SQL Server Enterprise Manager Console opens. 8. Select Console Root > Microsoft SQL Server > SQL Server Group > Local Windows NT (this may be different on your machine, access MS SQL server on your local server, opening local server). 9. Select Management and then click Database Management Plans. 10. Right click Database Maintenance and the select New Maintenance Plan from the dropdown list. The Database Maintenance Plan Wizard opens. Microsoft SQL Server Guide Best Practices and Backup Procedures 6

9 11. Click Next. The Database Maintenance Plan Wizard opens. 12. Click the These databases radio button. Use the following table as a guide to back up database(s) by select appropriate check box(es). DATABASE SPLive SPProto HBLive DESCRIPTION NEWSTAR Sales The live database NEWSTAR Sales The test environment database NEWSTAR Enterprise The live database Microsoft SQL Server Guide Best Practices and Backup Procedures 7

10 HBProto NEWSTAR Enterprise The test environment database 13. Click Next. Update Data Optimization Information screen opens. 14. Click Next (no boxes are selected). The Database Integrity Check screen opens. 15. Click Next (no boxes are selected). The Specify Database Backup Plan screen opens. 16. Select Back up the database as part of the maintenance plan and the Verify the integrity of the backup when complete check boxed. 17. Select the Disk radio button, and then click Change. The Edit Recurring Job Schedule screen opens. Microsoft SQL Server Guide Best Practices and Backup Procedures 8

11 18. From the Edit Recurring Job Schedule screen, select the following: i. Click the Enable Schedule check box. ii. Click the Daily radio button in the Occurs section. iii. Select Every 1 day(s) from the Daily dropdown list. iv. Select the Occurs once at radio button, and then select 8:00:00 PM from Daily frequency section (if you sure that most of work for the day is done by this time). v. Select today as a Start date. vi. Click the No end date radio button from the Duration section. 19. Click OK to save your work. The Specify Database Backup Plan screen re-appears. 20. Click Next. The Specify Backup Disk Directory opens. Microsoft SQL Server Guide Best Practices and Backup Procedures 9

12 21. Click the Use the directory: option, and then select the directory in which you want to store your backups Note: Backups consume a lot of disk space and can quickly leave your system without disk space. We strongly advise that you use a separate volume for your backup which doesn t have any critical applications or operating system installed. 22. De-select the Create a subdirectory for each database check box. 23. Select the Remove files older than check box, and then select 2 weeks from the dropdown lists (depending on the amount of disk space you have allocated for your backup and how redundant is your recovery plan), 24. Enter BAK in the Backup file extension field. 25. Click Next. The Specify the Transaction Log Backup Plan screen opens. 26. Click Next. The Reports to Generate screen opens. Microsoft SQL Server Guide Best Practices and Backup Procedures 10

13 27. Click the Write report to a text file in directory checkbox, and then specify either the same directory as your backup directory or create a subdirectory. 28. Click the Delete t ext report files older than checkbox, and then select 2 Week(s) from the dropdown lists. 29. Click Next. The Maintenance Plan History screen opens. 30. De-Select all check boxes and then click Next. The Completing the Database Maintenance Plan Wizard screen opens. Use the following table as a guide to assign names to the database backups. Microsoft SQL Server Guide Best Practices and Backup Procedures 11

14 DATABASE SPLive SPProto HBLive HBProto BACKUP PLAN NAME SPLive_Backup SPProto_Backup HPLive_Backup HPProto_Backup 31. Click Finish. A message box opens stating that you have Successfully created the maintenance plan. The new Backup Plan appears on the right side of your folder structure. 32. Close the SQL Server Enterprise Manager Console. Microsoft SQL Server Guide Best Practices and Backup Procedures 12

15 MS SQL Server 2005 and above 1. Check to make sure you have administrator rights on the Database server. 2. You will need to make sure SQL Server Agent is running and the service is set to start automatically. Note the green sign beside SQL Server Agent in SQL Server Management studio. If the Agent is not running then you should go to SQL Server Configuration Manager and try to start it. If it doesn t start then it could be that the user it is running as is not valid. 3. Expand Management subtree and right click on Maintenance Plans. Select Management Wizard. Microsoft SQL Server Guide Best Practices and Backup Procedures 13

16 4. Once the SQL Server Maintenance Plan wizard opens click next to continue. 5. In the next window enter a name for the database maintenance plan. From this window you will need to decide what back up strategy you are following. If you re going with a simple backup strategy such as taking a Full Backup of database every day then you probably want to choose a single schedule however if you are planning to do differential or transaction log backups then you want to choose separate schedules for each step. Microsoft SQL Server Guide Best Practices and Backup Procedures 14

17 6. If you choose to have single schedule for all steps then you must select Change and select the schedule you wish to proceed with. If you chose to have separate schedules then the Change button will be blanked out and you should go to step In the next screen you are able to select the steps you would like SQL Server Agent to perform. For taking a Full back select Backup Database (Full). It is recommended that you would do a database integrity check on a weekly basis. This document covers only the backup section however setting up other Maintenance plans to perform other database maintenance jobs is very similar. Take note that most of the jobs like database integrity check must be scheduled for after hours when none of the users are working on the database. Once you have selected the items you wish to include in the maintenance plan then click on Next. Microsoft SQL Server Guide Best Practices and Backup Procedures 15

18 8. In this page you will be able to tell SQL Server in which order you wish the tasks to run. If you ve select only to do a full back up then it will be the only task shown. Click Next to continue. Microsoft SQL Server Guide Best Practices and Backup Procedures 16

19 9. This step allows you to set up the Full Database back up for all or specific databases, the path you wish the databases to written at, extension of the file and the finally whether to check the backup integrity once finished. Be sure to select all the databases you wish to back up and make sure the path for the backup directory exists. Verify Backup Integrity must be checked as well to make sure your backups are valid. Click on Next to continue. Microsoft SQL Server Guide Best Practices and Backup Procedures 17

20 10. SQL Server Agent is able to generate a report for the maintenance plan and it is able to send it through or write it to disk. To be able to send the reports through you must configure Database Mail and operators. Click Next to continue. 11. Review all the options you have selected to make sure they re correct and then select Finish to continue. Microsoft SQL Server Guide Best Practices and Backup Procedures 18

21 12. SQL Server creates and configures the job through SQL Server Agent. You should see success for all steps. Daily Routine Monitor the daily backup activity for the first few days. If your backup period is 2 weeks, check your backup directory after 2 weeks to make sure that old backup files are being deleted. Check your disk space daily basis. If you are running out of space: Increase the disk space Delete old backup files Decrease backup cycle from 2 weeks to 1 week Monitor the backup and try to restore the database once in a while. Warning: Do not overwrite the NEWSTAR Live databases. Microsoft SQL Server Guide Best Practices and Backup Procedures 19

22 Help Desk Information If you have any issues, please contact the Constellation HomeBuilder Systems Help Desk. Hours: (Eastern Standard Time): Monday through Thursday 8:00 a.m. to 8:00 p.m. Friday 8:00 a.m. to 5:00 p.m. Telephone: (option 3) or locally Fax: Microsoft SQL Server Guide Best Practices and Backup Procedures 20

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

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

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

Implementing Microsoft SQL Server 2008 Exercise Guide. Database by Design

Implementing Microsoft SQL Server 2008 Exercise Guide. Database by Design Implementing Microsoft SQL Server 2008 Exercise Guide Database by Design Installation Lab: This lab deals with installing the SQL Server 2008 database. The requirements are to have either a Windows 7 machine

More information

SQL Server 2005 Advanced settings

SQL Server 2005 Advanced settings SQL Server 2005 Advanced settings Setting maximum memory use for SQL Server 2005 NOTE: By default SQL Server 2005 Express has a limitation of 2GB memory use. Set a limitation in memory use First: Open

More information

Restoring Sage Data Sage 200

Restoring Sage Data Sage 200 Restoring Sage Data Sage 200 [SQL 2005] This document explains how to Restore backed up Sage data. Before you start Restoring data please make sure that everyone is out of Sage 200. To be able to restore

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

Protecting SQL Server Databases. 1997-2008 Software Pursuits, Inc.

Protecting SQL Server Databases. 1997-2008 Software Pursuits, Inc. Protecting SQL Server Databases 1997-2008 Table of Contents Introduction... 2 Overview of the Backup Process... 2 Configuring SQL Server to Perform Scheduled Backups... 3 Configuring SureSync Relation

More information

Migrating MSDE to Microsoft SQL 2008 R2 Express

Migrating MSDE to Microsoft SQL 2008 R2 Express How To Updated: 11/11/2011 2011 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders. If you are still on MSDE 2000,

More information

Installing SQL Express. For CribMaster 9.2 and Later

Installing SQL Express. For CribMaster 9.2 and Later Installing SQL Express For CribMaster 9.2 and Later CRIBMASTER USER GUIDE Installing SQL Express Document ID: CM9-031-03012012 Copyright CribMaster. 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,

More information

FUSION Installation Guide

FUSION Installation Guide FUSION Installation Guide Version 1.0 Page 1 of 74 Content 1.0 Introduction... 3 2.0 FUSION Server Software Installation... 3 3.0 FUSION Client Software Installation... 10 4.0 FUSION NIM Software Installation...

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

Install SQL Server 2014 Express Edition

Install SQL Server 2014 Express Edition How To Install SQL Server 2014 Express Edition Updated: 2/4/2016 2016 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders.

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

STIDistrict Server Replacement

STIDistrict Server Replacement STIDistrict Server Replacement Major Steps Defined This document addresses how to migrate data and applications from an existing STIDistrict (SQL) Server to a new machine. There will be 8 major steps:

More information

Dashboard Client Installation Guide

Dashboard Client Installation Guide Dashboard Client Installation Guide TIE Dashboard Client Installation Guide Page 1 1987-2010 TIE Holding N.V. TIE Nederland BV TIE MamboFive B.V. Beukenhorst Oost Vondellaan 36 City House II 3521 GH Utrecht

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

Lenovo Online Data Backup User Guide Version 1.8.14

Lenovo Online Data Backup User Guide Version 1.8.14 Lenovo Online Data Backup User Guide Version 1.8.14 Contents Chapter 1: Installing Lenovo Online Data Backup...5 Downloading the Lenovo Online Data Backup Client...5 Installing the Lenovo Online Data

More information

How to Copy A SQL Database SQL Server Express (Making a History Company)

How to Copy A SQL Database SQL Server Express (Making a History Company) How to Copy A SQL Database SQL Server Express (Making a History Company) These instructions are written for use with SQL Server Express. Check with your Network Administrator if you are not sure if you

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

Database Administration Guide

Database Administration Guide Database Administration Guide 092211 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

Application Server Installation

Application Server Installation Application Server Installation Guide ARGUS Enterprise 11.0 11/25/2015 ARGUS Software An Altus Group Company Application Server Installation ARGUS Enterprise Version 11.0 11/25/2015 Published by: ARGUS

More information

Database Maintenance Guide

Database Maintenance Guide Database Maintenance Guide Medtech Evolution - Document Version 5 Last Modified on: February 26th 2015 (February 2015) This documentation contains important information for all Medtech Evolution users

More information

Installing LearningBay Enterprise Part 2

Installing LearningBay Enterprise Part 2 Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay

More information

TANDBERG MANAGEMENT SUITE 10.0

TANDBERG MANAGEMENT SUITE 10.0 TANDBERG MANAGEMENT SUITE 10.0 Installation Manual Getting Started D12786 Rev.16 This document is not to be reproduced in whole or in part without permission in writing from: Contents INTRODUCTION 3 REQUIREMENTS

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

Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions

Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions HOSTING Administrator Control Panel / Quick Reference Guide Page 1 of 9 Outlook Profile Setup Guide Exchange 2010 Quick Start and Detailed Instructions Exchange 2010 Outlook Profile Setup Page 2 of 9 Exchange

More information

About This Manual. 2 About This Manual

About This Manual. 2 About This Manual Ver.4.1 Important This System Guide applies to RadiNET Pro Ver. 4.1. Please read this System Guide and the User s Manual on the RadiNET Pro CD-ROM carefully to familiarize yourself with safe and effective

More information

4 Backing Up and Restoring System Software

4 Backing Up and Restoring System Software 4 Backing Up and Restoring System Software In this Chapter... Planning a Backup Strategy, 4-3 Preparing for Disaster Recovery, 4-4 Creating Boot Recovery Diskettes, 4-5 Making a Full Backup Tape, 4-8 Restoring

More information

How To Backup A Database In Navision

How To Backup A Database In Navision Making Database Backups in Microsoft Business Solutions Navision MAKING DATABASE BACKUPS IN MICROSOFT BUSINESS SOLUTIONS NAVISION DISCLAIMER This material is for informational purposes only. Microsoft

More information

Cloud Services ADM. Agent Deployment Guide

Cloud Services ADM. Agent Deployment Guide Cloud Services ADM Agent Deployment Guide 10/15/2014 CONTENTS System Requirements... 1 Hardware Requirements... 1 Installation... 2 SQL Connection... 4 AD Mgmt Agent... 5 MMC... 7 Service... 8 License

More information

BSDI Advanced Fitness & Wellness Software

BSDI Advanced Fitness & Wellness Software BSDI Advanced Fitness & Wellness Software 6 Kellie Ct. Califon, NJ 07830 http://www.bsdi.cc SOFTWARE BACKUP/RESTORE INSTRUCTION SHEET This document will outline the steps necessary to take configure the

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

Stellar Phoenix. SQL Database Repair 6.0. Installation Guide

Stellar Phoenix. SQL Database Repair 6.0. Installation Guide Stellar Phoenix SQL Database Repair 6.0 Installation Guide Overview Stellar Phoenix SQL Database Repair software is an easy to use application designed to repair corrupt or damaged Microsoft SQL Server

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

SQL Server 2008 R2 Express Installation for Windows 7 Professional, Vista Business Edition and XP Professional.

SQL Server 2008 R2 Express Installation for Windows 7 Professional, Vista Business Edition and XP Professional. SQL Server 2008 R2 Express Installation for Windows 7 Professional, Vista Business Edition and XP Professional. 33-40006-001 REV: B PCSC 3541 Challenger Street Torrance, CA 90503 Phone: (310) 303-3600

More information

BDR for ShadowProtect Solution Guide and Best Practices

BDR for ShadowProtect Solution Guide and Best Practices BDR for ShadowProtect Solution Guide and Best Practices Updated September 2015 - i - Table of Contents Process Overview... 3 1. Assess backup requirements... 4 2. Provision accounts... 4 3. Install ShadowProtect...

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

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

ScriptLogic File System Auditor Agent Configuration Getting Started Guide

ScriptLogic File System Auditor Agent Configuration Getting Started Guide ScriptLogic File System Auditor Agent Configuration Getting Started Guide FILE SYSTEM AUDITOR II 2011 by ScriptLogic Corporation All rights reserved. This publication is protected by copyright and all

More information

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Backup Assistant User Guide NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Liability Disclaimer NEC Unified Solutions, Inc. reserves the right to change the specifications, functions,

More information

NovaBACKUP. Storage Server. NovaStor / May 2011

NovaBACKUP. Storage Server. NovaStor / May 2011 NovaBACKUP Storage Server NovaStor / May 2011 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without notice.

More information

http://support.microsoft.com/kb/878449 Notes Transfer instructions INTRODUCTION More information

http://support.microsoft.com/kb/878449 Notes Transfer instructions INTRODUCTION More information Page 1 of 6 How to transfer an existing Microsoft Dynamics GP, Microsoft Small Business Financials, or Microsoft Small Business Manager installation to a new server that is running Microsoft SQL Server

More information

How to Install CS OrthoTrac on a New Server and Copy the Data from the Old Server to the New Version 12 and higher

How to Install CS OrthoTrac on a New Server and Copy the Data from the Old Server to the New Version 12 and higher How to Install CS OrthoTrac on a New Server and Copy the Data from the Old Server to the New Version 12 and higher Purpose This document will show how to install CS OrthoTrac practice management software

More information

3 Setting up Databases on a Microsoft SQL 7.0 Server

3 Setting up Databases on a Microsoft SQL 7.0 Server 3 Setting up Databases on a Microsoft SQL 7.0 Server Overview of the Installation Process To set up GoldMine properly, you must follow a sequence of steps to install GoldMine s program files, and the other

More information

GUARD1 PLUS SE Administrator's Manual

GUARD1 PLUS SE Administrator's Manual GUARD1 PLUS SE Administrator's Manual Version 4.4 30700 Bainbridge Road Solon, Ohio 44139 Phone 216-595-0890 Fax 216-595-0991 info@guard1.com www.guard1.com i 2010 TimeKeeping Systems, Inc. GUARD1 PLUS

More information

Integrating Data Protection Manager with StorTrends itx

Integrating Data Protection Manager with StorTrends itx Integrating Data Protection Manager with StorTrends itx INTEGRATING DATA PROTECTION MANAGER WITH STORTRENDS ITX 2 1. Introduction 2 2. Test Environment 2 Requirements 2 3. Setting up the Application Servers

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

Application Note 116: Gauntlet System High Availability Using Replication

Application Note 116: Gauntlet System High Availability Using Replication Customer Service: 425-487-1515 Technical Support: 425-951-3390 Fax: 425-487-2288 Email: info@teltone.com support@teltone.com Website: www.teltone.com Application Note 116: Gauntlet System High Availability

More information

Planning the Installation and Installing SQL Server

Planning the Installation and Installing SQL Server Chapter 2 Planning the Installation and Installing SQL Server In This Chapter c SQL Server Editions c Planning Phase c Installing SQL Server 22 Microsoft SQL Server 2012: A Beginner s Guide This chapter

More information

Novell File Reporter 2.5 Who Has What?

Novell File Reporter 2.5 Who Has What? Novell File Reporter 2.5 Who Has What? Richard Cabana Senior Systems Engineer File Access & Mgmt Solution Principal Attachmate Novell North America rcabana@novell.com Joe Marton Senior Systems Engineer

More information

Version: 1.5 2014 Page 1 of 5

Version: 1.5 2014 Page 1 of 5 Version: 1.5 2014 Page 1 of 5 1.0 Overview A backup policy is similar to an insurance policy it provides the last line of defense against data loss and is sometimes the only way to recover from a hardware

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

How To Backup An Rssql Database With A Backup And Maintenance Wizard

How To Backup An Rssql Database With A Backup And Maintenance Wizard Backup and Maintenance Wizard / Backup Reminder Overview The Backup Reminder and the Backup and Maintenance Wizard are progra ms that are included on your RS-SQL CD. The Backup and Maintenance Wizard program

More information

enicq 5 System Administrator s Guide

enicq 5 System Administrator s Guide Vermont Oxford Network enicq 5 Documentation enicq 5 System Administrator s Guide Release 2.0 Published November 2014 2014 Vermont Oxford Network. All Rights Reserved. enicq 5 System Administrator s Guide

More information

Time Stamp. Instruction Booklet

Time Stamp. Instruction Booklet Time Stamp Instruction Booklet Time Stamp Introductions Time stamp is a useful solution for backing up and restoring system, it backs up the entire computer system to the Backup Zone. Time Stamp is used

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

Using MS-SQL Server with Visual DataFlex March, 2009

Using MS-SQL Server with Visual DataFlex March, 2009 Using MS-SQL Server with Visual DataFlex March, 2009 All rights reserved. Target Audience It is assumed that the reader of this white paper has general knowledge of the Visual DataFlex development environment.

More information

ProjectWise Explorer V8i User Manual for Subconsultants & Team Members

ProjectWise Explorer V8i User Manual for Subconsultants & Team Members ProjectWise Explorer V8i User Manual for Subconsultants & Team Members submitted to Michael Baker International Subconsultants & Team Members submitted by Michael Baker International ProjectWise Support

More information

EVault Software. Course 361 Protecting Linux and UNIX with EVault

EVault Software. Course 361 Protecting Linux and UNIX with EVault EVault Software Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers Used in

More information

Preparing a SQL Server for EmpowerID installation

Preparing a SQL Server for EmpowerID installation Preparing a SQL Server for EmpowerID installation By: Jamis Eichenauer Last Updated: October 7, 2014 Contents Hardware preparation... 3 Software preparation... 3 SQL Server preparation... 4 Full-Text Search

More information

Microsoft SQL Server Staging

Microsoft SQL Server Staging Unified ICM requires that you install Microsoft SQL Server on each server that hosts a Logger or Administration & Data Server (Real Time Distributor and HDS only) component. Microsoft SQL Server efficiently

More information

TimeValue Software Due Date Tracking and Task Management Software

TimeValue Software Due Date Tracking and Task Management Software User s Guide TM TimeValue Software Due Date Tracking and Task Management Software File In Time Software User s Guide Copyright TimeValue Software, Inc. (a California Corporation) 1992-2010. All rights

More information

Setting Up Monthly Reporter

Setting Up Monthly Reporter Setting Up Monthly Reporter April 11, 2014 I. HOW IT WORKS A QUICK OVERVIEW A. AuditWare Development Company maintains a powerful, sophisticated server on which a portion of memory is assigned to each

More information

Database Administration Guide

Database Administration Guide Database Administration Guide 013008 2008 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

VMware/Hyper-V Backup Plug-in User Guide

VMware/Hyper-V Backup Plug-in User Guide VMware/Hyper-V Backup Plug-in User Guide COPYRIGHT No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying,

More information

Active Directory Management. Agent Deployment Guide

Active Directory Management. Agent Deployment Guide Active Directory Management Agent Deployment Guide Document Revision Date: June 12, 2014 Active Directory Management Deployment Guide i Contents System Requirements...1 Hardware Requirements...1 Installation...3

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

TSM Studio Server User Guide 2.9.0.0

TSM Studio Server User Guide 2.9.0.0 TSM Studio Server User Guide 2.9.0.0 1 Table of Contents Disclaimer... 4 What is TSM Studio Server?... 5 System Requirements... 6 Database Requirements... 6 Installing TSM Studio Server... 7 TSM Studio

More information

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day benday@benday.com v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

Introduction to Hyper-V High- Availability with Failover Clustering

Introduction to Hyper-V High- Availability with Failover Clustering Introduction to Hyper-V High- Availability with Failover Clustering Lab Guide This lab is for anyone who wants to learn about Windows Server 2012 R2 Failover Clustering, focusing on configuration for Hyper-V

More information

How To Use A Microsoft Microsoft Database Server 2012

How To Use A Microsoft Microsoft Database Server 2012 OFFICIAL MICROSOFT LEARNING PRODUCT 10775A Lab Instructions and Lab Answer Key: Administering Microsoft SQL Server 2012 Database Information in this document, including URL and other Internet Web site

More information

Xopero Centrally managed backup solution. User Manual

Xopero Centrally managed backup solution. User Manual Centrally managed backup solution User Manual Contents Desktop application...2 Requirements...2 The installation process...3 Logging in to the application...6 First logging in to the application...7 First

More information

MS SQL Server Backup - User Guide

MS SQL Server Backup - User Guide MS SQL Server Backup - User Guide TABLE OF CONTENTS Introduction... 1 Features... 1 System Requirements... 1 MS SQL Server Backup... 2 Accessing SQL Server Backup... 2 MS SQL Server Restore... 6 Accessing

More information

SWP-0054 Creating a SQL Maintenance Plan. Revision: 1. Effective Date: 4/26/2011

SWP-0054 Creating a SQL Maintenance Plan. Revision: 1. Effective Date: 4/26/2011 Software Procedure SWP-0054 Creating a SQL Maintenance Plan Revision: 1 Effective Date: 4/26/2011 Alaska Native Tribal Health Consortium Division of Health Information & Technology 4000 Ambassador Drive

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

ImageNow for Microsoft SQL Server

ImageNow for Microsoft SQL Server ImageNow for Microsoft SQL Server Best Practices Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: July 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow,

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

How To Restore Your Data On A Backup By Mozy (Windows) On A Pc Or Macbook Or Macintosh (Windows 2) On Your Computer Or Mac) On An Pc Or Ipad (Windows 3) On Pc Or Pc Or Micro

How To Restore Your Data On A Backup By Mozy (Windows) On A Pc Or Macbook Or Macintosh (Windows 2) On Your Computer Or Mac) On An Pc Or Ipad (Windows 3) On Pc Or Pc Or Micro Online Backup by Mozy Restore Common Questions Document Revision Date: June 29, 2012 Online Backup by Mozy Common Questions 1 How do I restore my data? There are five ways of restoring your data: 1) Performing

More information

NovaBACKUP. User Manual. NovaStor / November 2011

NovaBACKUP. User Manual. NovaStor / November 2011 NovaBACKUP User Manual NovaStor / November 2011 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without

More information

Technical Paper. Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication

Technical Paper. Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication Technical Paper Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication Release Information Content Version: 1.0 October 2015. Trademarks and Patents SAS Institute

More information

Archive Attender Version 3.5

Archive Attender Version 3.5 Archive Attender Version 3.5 Getting Started Guide Sherpa Software (800) 255-5155 www.sherpasoftware.com Page 1 Under the copyright laws, neither the documentation nor the software can be copied, photocopied,

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

NetBak Replicator 4.0 User Manual Version 1.0

NetBak Replicator 4.0 User Manual Version 1.0 NetBak Replicator 4.0 User Manual Version 1.0 Copyright 2012. QNAP Systems, Inc. All Rights Reserved. 1 NetBak Replicator 1. Notice... 3 2. Install NetBak Replicator Software... 4 2.1 System Requirements...

More information

PCVITA Express Migrator for SharePoint(Exchange Public Folder) 2011. Table of Contents

PCVITA Express Migrator for SharePoint(Exchange Public Folder) 2011. Table of Contents Table of Contents Chapter-1 ------------------------------------------------------------- Page No (2) What is Express Migrator for Exchange Public Folder to SharePoint? Migration Supported The Prominent

More information

StarWind iscsi SAN Software: Implementation of Enhanced Data Protection Using StarWind Continuous Data Protection

StarWind iscsi SAN Software: Implementation of Enhanced Data Protection Using StarWind Continuous Data Protection StarWind iscsi SAN Software: Implementation of Enhanced Data Protection Using StarWind Continuous Data Protection www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright

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

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

StarWind iscsi SAN Software: Using an existing SAN for configuring High Availability storage with Windows Server 2003 and 2008

StarWind iscsi SAN Software: Using an existing SAN for configuring High Availability storage with Windows Server 2003 and 2008 StarWind iscsi SAN Software: Using an existing SAN for configuring High Availability storage with Windows Server 2003 and 2008 www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT

More information

InformationNOW SQL 2008 Database Backup and Restoration

InformationNOW SQL 2008 Database Backup and Restoration InformationNOW SQL 2008 Database Backup and Restoration Backing up a SQL 2008 Database Users are advised to create frequent multiple offsite backups. Occasionally, it may be necessary to manually initiate

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

SQL Server Setup Guide for BusinessObjects Planning

SQL Server Setup Guide for BusinessObjects Planning SQL Server Setup Guide for BusinessObjects Planning BusinessObjects Planning XI Release 2 Copyright 2007 Business Objects. All rights reserved. Business Objects owns the following U.S. patents, which may

More information

efolder BDR for Veeam Cloud Connection Guide

efolder BDR for Veeam Cloud Connection Guide efolder BDR for Veeam Cloud Connection Guide Setup Connect Preload Data uh6 efolder BDR Guide for Veeam Page 1 of 36 INTRODUCTION Thank you for choosing the efolder Cloud for Veeam. Using the efolder Cloud

More information

BrightStor ARCserve Backup for Windows

BrightStor ARCserve Backup for Windows BrightStor ARCserve Backup for Windows Agent for Microsoft SQL Server r11.5 D01173-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the

More information

Backup and Recovery. What Backup, Recovery, and Disaster Recovery Mean to Your SQL Anywhere Databases

Backup and Recovery. What Backup, Recovery, and Disaster Recovery Mean to Your SQL Anywhere Databases Backup and Recovery What Backup, Recovery, and Disaster Recovery Mean to Your SQL Anywhere Databases CONTENTS Introduction 3 Terminology and concepts 3 Database files that make up a database 3 Client-side

More information

Database Backup and Recovery Guide

Database Backup and Recovery Guide Scout Diagnostics Database Backup and Recovery Guide P H 803. 358. 3600 F A X 803. 358. 3636 WWW.AVTECINC.COM 100 I N N O VAT I O N P L ACE, L E X I N G T O N SC 29072 Copyright 2013 by Avtec, Inc. All

More information

Step-by-Step Guide to Setup Instant Messaging (IM) Workspace Datasheet

Step-by-Step Guide to Setup Instant Messaging (IM) Workspace Datasheet Step-by-Step Guide to Setup Instant Messaging (IM) Workspace Datasheet CONTENTS Installation System requirements SQL Server setup Setting up user accounts Authentication mode Account options Import from

More information

Automating Administration with SQL Agent

Automating Administration with SQL Agent Automating Administration with SQL Agent Automating Administration with SQL Agent Objectives Configure SQL Server Agent. Set SQL Server Agent properties. Configure a fail-safe operator. Create operators.

More information

WhatsUp Gold v16.2 Installation and Configuration Guide

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

More information

SQL Backup and Restore using CDP

SQL Backup and Restore using CDP CDP SQL Backup and Restore using CDP Table of Contents Table of Contents... 1 Introduction... 2 Supported Platforms... 2 SQL Server Connection... 2 Figure 1: CDP Interface with the SQL Server... 3 SQL

More information