How to move a SQL database from one server to another
|
|
- Melissa Robbins
- 5 years ago
- Views:
Transcription
1 How to move a SQL database from one server to another Guide is applicable to these products: * Lucid CoPS, Lucid Rapid, LASS 8-11, LASS 11-15, LADS Plus and Lucid Ability (v6.0x-n) * Lucid Exact v1.xx-n * Memory Booster v1.2x-n * Comprehension Booster v1.3x-n) Before you begin: Ensure that you at least file access to your old SQL server instance. Ensure you have set up your new SQL Server instance along with SQL Server Management Studio, which you will need to use later. Make a note of the two database files you ll be using see Appendix 1 in this guide. A quick summary of the steps required: 1. Locate old database on old server 2. Copy and then attach database to new server 3. Recreate the Account and Login using a script 4. Recreate the connection string so the software can find the database Page 1 of 10
2 1) Find the database to migrate First, find where the database files from the old server are located. Find the files in two ways: (A) search on the old server for a specific file e.g. Lucid.mdf or LADS.mdf. (B) Launch SQL Server Management Studio on the old server and connect to the SQL Server instance where the database is. Right mouse click on the root of the Object Explorer, select Properties and then Database Settings to view the default location of the database files (see figure 1). Figure 1 finding the destination folder for databases The orange arrow (above) shows the location of the database files. Page 2 of 10
3 2) Copy the database and then Attach it. Launch SQL Server Management Studio and connect to the new SQL Server instance. Find where the database files should be put on the new server by employing the same technique as in Step 1. Manually copy the two database files into the folder, making sure nobody is using the database on your network before you do so. You may be prevented from copying the files if so you can stop the SQL Server service temporarily (right mouse click on the SQL Server instance on the root of Object Explorer in SQL Server Management Studio and from the menu select Stop. To restart the service, select Start. Now you need to attach the new database. Run Management Studio and right mouse click over the Databases node. Select Attach. Select Add and choose the mdf file you need, in this example it is Lucid.mdf * (see Figure 2). Select OK. Figure 2 choosing the database to Attach * Check which file you need by referring to Appendix 1. Page 3 of 10
4 3. Recreate the Lucid Account and Login using a script. A script is provided to recreate both the Account and Login used by the Lucid software. The script also adds permissions to the database. The script is shown in full in Appendix 2 at the end of this document. You can also download it from a web-link below: Only copy the script that services your product or range of products - there are 5 scripts all lumped together but separated by comments. To run the script, choose New Query in SQL Server Management Studio. Paste the script into the window on the right of the screen. Choose Execute from the toolbar. That s it. 4. Recreate the connection string file used by the Lucid software. The connection string is an encrypted file which tells the software where the database is and the credentials it needs to attach to it. Below is an example of a connection string used in SQL Server: Driver={SQL Server Native Client 10.0};Server=SCH03SERVER\MyInstance;Database=SCHOOLDATA;Uid=SchoolUser;Pwd=x6Mx37UaQ; In Lucid s networked products, the connection string is stored encrypted in a small text file called either server_config_2.dat or server_configuration.dat, depending on how old your software is. Find this file, which is in the folder \Data\ off the application folder, for example: C:\Program Files\LucidResearch\LASS Network\Data\ Delete this file if both files are there delete them both. Now run the Admin module of the Lucid product; it will detect that the connection string file is missing and will launch the tool which prompts you to recreate it. See Appendix 3 for more help with using the database tool: Page 4 of 10
5 APPENDIX 1 Names of database files used by different Lucid Products Title LASS 8-11, LASS 11-15, Lucid Rapid, Lucid CoPS and Lucid Ability Filenames Lucid.mdf Lucid_log.ldf LADS and LADS Plus Lucid Exact Comprehension Booster (formerly Reading Booster) Memory Booster LADS.mdf LADS_log.ldf EXACT.mdf EXACT_log.ldf reading_booster.mdf reading_booster_log.ldf memory_booster.mdf memory_booster_log.ldf Note: SQL databases are two parts, with the main file (.mdf) and the transaction log file (.ldf). These must always be together in the same folder. Page 5 of 10
6 APPENDIX 2 Scripts to rebuild Lucid product s Account and Login after you ve attached the migrated database. Only execute the script you need for your Lucid product, which are number 1 to 5 on the pages which follow. /****** This document contains several separate SQL scripts which should be run in SQL Server Management Studio as a 'New Query'.***********/ /****** The scripts perform actions on databases used by Lucid products, such as rebuilding a Login which has been manually deleted ***********/ /****** as part of a database migration (in other words, moving a database to a different SQL Server). To use the script copy the lines *************/ /****** between the comments (like this line) and paste them into a 'New Query' window in SQL Server Management Studio. ***********************/ /****** Then click on '!Execute' to run the query. ******************************************************************************************************** ******/ /****** If the query is successful you will the line 'Command(s) completed successfully.' in the log below the query window. ***********************/ /****** If you see any lines in red they will be errors and the query will not have been completed successfully ****************************************/ /****** IMPORTANT! Please change the PASSWORD entry between the single quotes (e.g. PASSWORD=N'xxxxxx') if you are not using the **/ /****** default password shown within the scripts **********/ /***** Script 1 for LUCID database only **************************************************************************/ /***** This script can be used for all these Lucid networked products: *******************************************/ /***** Lucid CoPS, Lucid Rapid, LASS 8-11 (or LASS Junior), LASS (or LASS Secondary). **********************/ /******************************************************************************************************* **********/ use [lucid] DROP LOGIN [LucidUser] CREATE LOGIN [LucidUser] WITH PASSWORD=N'ZX_123_abZ', DEFAULT_DATABASE=[Lucid], DEFAULT_LANGUAGE=[British], CHECK_EXPIRATION=OFF, CHECK_POLICY=ON ALTER USER [LucidUser] WITH LOGIN=LucidUser EXEC sp_addrolemember N'db_owner', N'LucidUser' EXEC sp_addrolemember N'db_datareader', N'LucidUser' EXEC sp_addrolemember N'db_datawriter', N'LucidUser' Page 6 of 10
7 /***** Script 2 for LADS database only ******************************************************************************************/ /***** This script can be used for both LADS and LADS Plus **********************************************************************/ /******************************************************************************************************* *************************/ USE [LADS] DROP LOGIN [LADSUser] CREATE LOGIN [LADSUser] WITH PASSWORD=N'ZX_123_abZ', DEFAULT_DATABASE=[LADS], DEFAULT_LANGUAGE=[British], CHECK_EXPIRATION=OFF, CHECK_POLICY=ON ALTER USER [LADSUser] WITH LOGIN=LADSUser EXEC sp_addrolemember N'db_owner', N'LADSUser' EXEC sp_addrolemember N'db_datareader', N'LADSUser' EXEC sp_addrolemember N'db_datawriter', N'LADSUser' /***** Script 3 for EXACT database only ****************************/ /***** This script can be used with Lucid Exact ********************/ /*******************************************************************/ USE [EXACT] DROP LOGIN [ExactUser] CREATE LOGIN [ExactUser] WITH PASSWORD=N'ZX_123_abZ', DEFAULT_DATABASE=[Exact], DEFAULT_LANGUAGE=[British], CHECK_EXPIRATION=OFF, CHECK_POLICY=ON ALTER USER [ExactUser] WITH LOGIN=ExactUser EXEC sp_addrolemember N'db_owner', N'ExactUser' EXEC sp_addrolemember N'db_datareader', N'ExactUser' EXEC sp_addrolemember N'db_datawriter', N'ExactUser' Page 7 of 10
8 /***** Script 4 for Comprehension Booster *********************************************/ /***** This script can be used with Comprehension Booster *****************************/ /**************************************************************************************/ USE [reading_booster] DROP LOGIN [reading_booster_user] CREATE LOGIN [reading_booster_user] WITH PASSWORD=N'ZX_123_abZ', DEFAULT_DATABASE=[reading_booster], DEFAULT_LANGUAGE=[British], CHECK_EXPIRATION=OFF, CHECK_POLICY=ON ALTER USER [reading_booster_user] WITH LOGIN=reading_booster_user EXEC sp_addrolemember N'db_owner', N'reading_booster_user' EXEC sp_addrolemember N'db_datareader', N'reading_booster_user' EXEC sp_addrolemember N'db_datawriter', N'reading_booster_user' /***** Script 5 for Memory Booster, whose database is called memory_booster ***********/ /***** This script can be used with Memory Booster ************************************/ /**************************************************************************************/ USE [memory_booster] DROP LOGIN [MemoryBoosterUser] CREATE LOGIN [MemoryBoosterUser] WITH PASSWORD=N'ZX_123_abZ', DEFAULT_DATABASE=[memory_booster], DEFAULT_LANGUAGE=[British], CHECK_EXPIRATION=OFF, CHECK_POLICY=ON ALTER USER [MemoryBoosterUser] WITH LOGIN=MemoryBoosterUser EXEC sp_addrolemember N'db_owner', N'MemoryBoosterUser' EXEC sp_addrolemember N'db_datareader', N'MemoryBoosterUser' EXEC sp_addrolemember N'db_datawriter', N'MemoryBoosterUser' /**************************************** END OF SCRIPTS **********************************************/ Page 8 of 10
9 APPENDIX 3 Using the Database Installer Tool to recreate the connection string file Begin by launching the tool which can be found in the \Data\ folder off the application folder. Lucid.Applications.DatabaseInstaller.exe After launching this exe file you will see the selections panel below. You need to choose the SQL Server Name (including instance name after the backslash if appropriate) and the ODBC driver. If using SQL Server 2005 choose the driver: SQL Native Client If using SQL Server 2008 choose the driver: SQL Server Native Client 10.0 If using SQL Server 2012 choose the driver: SQL Server Native Client 11.0 If you wish to use Windows Authentication for SQL Server, choose that option and then click on Install. Page 9 of 10
10 If you wish to use SQL Server (Mixed Mode) Authentication you need to enter the sa administrator account password. Then click Install to proceed. Any feedback (or possible errors) during installation will be shown in the scrollable text window. If the database has been installed already, the tool will detect this and leave it alone, simply creating the connection string file if necessary. Click Finish to exit the tool. If you think you may have incorrectly configured the Database Installer Tool, for instance, you get long error messages when running the Lucid software, you can start again by manually deleting the file server_configuration.dat in the folder called \Data off the application folder. This file contains an encrypted connection string used by the software to connect to the Lucid database. Then run your Lucid application again and this will launch the database tool again. Page 10 of 10
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
for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later
for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research
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
TROUBLESHOOTING GUIDE
TROUBLESHOOTING GUIDE (When using SQL Server 2008 R2) Third edition, (3 Dec 2013) This manual applies to these networked products: Lucid CoPS, Lucid Rapid, LASS 8-11, LASS 11-15 LADS, LADS Plus, Lucid
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,
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
Installation Guide for Microsoft SQL Server 2008 R2 Express. October 2011 (GUIDE 1)
Installation Guide for Microsoft SQL Server 2008 R2 Express October 2011 (GUIDE 1) Copyright 2011 Lucid Innovations Limited. All Rights Reserved This guide only covers the installation and configuration
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
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
These notes are for upgrading the Linko Version 9.3 MS Access database to a SQL Express 2008 R2, 64 bit installations:
These notes are for upgrading the Linko Version 9.3 MS Access database to a SQL Express 2008 R2, 64 bit installations: This document substitutes for STEPS TWO and THREE of the upgrade Game Plan Webpage
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
MICROSTRATEGY 9.3 Supplement Files Setup Transaction Services for Dashboard and App Developers
NOTE: You can use these instructions to configure instructor and student machines. Software Required Microsoft Access 2007, 2010 MicroStrategy 9.3 Microsoft SQL Server Express 2008 R2 (free from Microsoft)
INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:
INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software
for Networks Installation Guide for thin client package on workstations September 2015 (GUIDE 3) Version 1.3-N
for Networks Installation Guide for thin client package on workstations September 2015 (GUIDE 3) Version 1.3-N Copyright 2015, Lucid Innovations Limited. All Rights Reserved Lucid Research Limited www.lucid-research.com
FaxCore Ev5 Database Migration Guide :: Microsoft SQL 2008 Edition
1 FaxCore Ev5 - Database Migration Guide :: Microsoft SQL 2008 Edition Version 1.0.0 FaxCore Ev5 Database Migration Guide :: Microsoft SQL 2008 Edition 2 FaxCore Ev5 - Database Migration Guide :: Microsoft
FaxCore 2007 Database Migration Guide :: Microsoft SQL 2008 Edition
1 FaxCore 2007 - Database Migration Guide :: Microsoft SQL 2008 Edition Version 1.0.0 FaxCore 2007 Database Migration Guide :: Microsoft SQL 2008 Edition 2 FaxCore 2007 - Database Migration Guide :: Microsoft
RSA Security Analytics
RSA Security Analytics Event Source Log Configuration Guide Microsoft SQL Server Last Modified: Thursday, July 30, 2015 Event Source Product Information: Vendor: Microsoft Event Source: SQL Server Versions:
Training module 2 Installing VMware View
Training module 2 Installing VMware View In this second module we ll install VMware View for an End User Computing environment. We ll install all necessary parts such as VMware View Connection Server and
TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:
TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/
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
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
Migrating helpdesk to a new server
Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2
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.
Video Administration Backup and Restore Procedures
CHAPTER 12 Video Administration Backup and Restore Procedures This chapter provides procedures for backing up and restoring the Video Administration database and configuration files. See the following
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
LAE 5.1. Windows Server Installation Guide. Version 1.0
LAE 5.1 Windows Server Installation Guide Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LIMITED. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS THEREOF MAY NOT BE REPRODUCED IN ANY FORM WITHOUT
NetSupport DNA Configuration of Microsoft SQL Server Express
NetSupport DNA Configuration of Microsoft SQL Server Express Configuration of Microsoft SQL Server Express and NetSupport DNA Installation Requirements If installing Microsoft SQL Server Express on Windows
SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10
3245 University Avenue, Suite 1122 San Diego, California 92104 USA SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10 Document Number: SII-TT-002 Date Issued: July 8,
Installation & Maintenance Guide
The instruction booklet is also included on the CD in Word and Acrobat formats, which may be easier to print. (If you want to install Acrobat Reader run d:\acroread\setup.exe (where d:\ is the identifier
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
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
Sitecore Ecommerce Enterprise Edition Installation Guide Installation guide for administrators and developers
Installation guide for administrators and developers Table of Contents Chapter 1 Introduction... 2 1.1 Preparing to Install Sitecore Ecommerce Enterprise Edition... 2 1.2 Required Installation Components...
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
Click Studios. Passwordstate. Upgrade Instructions to V7 from V5.xx
Passwordstate Upgrade Instructions to V7 from V5.xx This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed,
QUANTIFY INSTALLATION GUIDE
QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the
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
Connecticut Hazardous Waste Manifests Database
Connecticut Hazardous Waste Manifests Database Due to limitations inherent to Microsoft Access, the Department has migrated this database to Microsoft SQL Server. The user interface will remain the same.
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,
Aradial Installation Guide
Aradial Technologies Ltd. Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted. No part of this document
Table of Contents SQL Server Option
Table of Contents SQL Server Option STEP 1 Install BPMS 1 STEP 2a New Customers with SQL Server Database 2 STEP 2b Restore SQL DB Upsized by BPMS Support 6 STEP 2c - Run the "Check Dates" Utility 7 STEP
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,
How to Backup and FTP your SQL database using E2.
How to Backup and FTP your SQL database using E2. To follow these instructions steps 1 14 must be completed either on the SQL Server or on a workstation that has the SQL Client Tools installed. You may
Setting up an MS SQL Server for IGSS
Setting up an MS SQL Server for IGSS Table of Contents Table of Contents...1 Introduction... 2 The Microsoft SQL Server database...2 Setting up an MS SQL Server...3 Installing the MS SQL Server software...3
Issue Tracking Anywhere Installation Guide
TM Issue Tracking Anywhere Installation Guide The leading developer of version control and issue tracking software Table of Contents Introduction...3 Installation Guide...3 Installation Prerequisites...3
Moving/Restoring the StarShip SQL database
Rev A.T 20140812 Moving/Restoring the StarShip SQL database This document outlines the necessary steps to migrate the StarShip database from one Microsoft SQL Server 2012 instance to another. The steps
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
MS SQL Server Database Management
MS SQL Server Database Management Contents Creating a New MS SQL Database... 2 Connecting to an Existing MS SQL Database... 3 Migrating a GoPrint MS SQL Database... 5 Troubleshooting... 11 Published April
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
Microsoft Corporation. Project Server 2010 Installation Guide
Microsoft Corporation Project Server 2010 Installation Guide Office Asia Team 11/4/2010 Table of Contents 1. Prepare the Server... 2 1.1 Install KB979917 on Windows Server... 2 1.2 Creating users and groups
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
Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide.
Version 4.61 or Later Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. This manual, as well as the software described in it, is furnished
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
Setup guide. TELUS AD Sync
Setup guide TELUS AD Sync June 2013 TELUS AD Sync User Guide. The AD Sync Tool must be downloaded onto your organization s Domain Controller. Please call TELUS at 1 877 846 4456 to have this feature provisioned
Moving a CIMPLICITY SQL Database using Detach/Attach Proficy HMI/SCADA CIMPLICITY
Moving a CIMPLICITY SQL Database using Detach/Attach Proficy HMI/SCADA CIMPLICITY Introduction The purpose of this document is to outline the minimal steps required to move a Microsoft SQL Server Express
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
Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide
Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Table of Contents TABLE OF CONTENTS... 3 1.0 INTRODUCTION... 1 1.1 HOW TO USE THIS GUIDE... 1 1.2 TOPIC SUMMARY...
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
Exercise Safe Commands and Audit Trail
Exercise Safe Commands and Audit Trail Table of Contents Exercise 1: Secure Objects with Safe Commands...2 Exercise 2: Record User Actions in the Audit Trail... 13 3.1 Setting up the SQL Server for Audit
PRIME Installation Guide
PRIME Installation Guide Version 13.03 24 March 2014 Innovative Solutions for Education Management www.drakelane.co.uk System requirements... 3 Installation... 4 Special notes for SQL Server 2008 R2 Express...
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
Microsoft SQL Server Express 2005 Install Guide
Microsoft SQL Server Express 2005 Install Guide Version 1.1 Page 1 of 32 Contents 1.0 Introduction... 3 1.1 Installing Microsoft SQL Server Express 2005 SP4 Edition... 3 1.2 Installing Microsoft SQL Server
2. Unzip the file using a program that supports long filenames, such as WinZip. Do not use DOS.
Using the TestTrack ODBC Driver The read-only driver can be used to query project data using ODBC-compatible products such as Crystal Reports or Microsoft Access. You cannot enter data using the ODBC driver;
NetSupport DNA Configuration of Microsoft SQL Server Express
NetSupport DNA Configuration of Microsoft SQL Server Express Copyright 2016 NetSupport Ltd All rights reserved Configuration of Microsoft SQL Server Express and NetSupport DNA Installation Requirements
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,
EventSentry Overview. Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2. Part III Setting up IIS 9. Part IV Installing EventSentry 11
Contents I EventSentry Overview Part I Introduction 1 Part II Setting up SQL 2008 R2 Express 2 1 Downloads... 2 2 Installation... 3 3 Configuration... 7 Part III Setting up IIS 9 1 Installation... 9 Part
Zanibal Plug-in For Microsoft Outlook Installation & User Guide Version 1.1
Zanibal Plug-in For Microsoft Outlook Installation & User Guide Version 1.1 Zanibal LLC Phone: +1-408-887-0480, +234-1-813-1744 Email: support@zanibal.com www.zanibal.com Copyright 2012, Zanibal LLC. All
O Reilly Media, Inc. 3/2/2007
A Setup Instructions This appendix provides detailed setup instructions for labs and sample code referenced throughout this book. Each lab will specifically indicate which sections of this appendix must
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
Desktop Deployment Guide ARGUS Enterprise 10.6. 5/29/2015 ARGUS Software An Altus Group Company
ARGUS Enterprise 10.6 5/29/2015 ARGUS Software An Altus Group Company for ARGUS Enterprise Version 10.6 5/29/2015 Published by: ARGUS Software, Inc. 3050 Post Oak Boulevard Suite 900 Houston, Texas 77056
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
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
Polar Help Desk Installation Guide
Polar Help Desk Installation Guide Copyright (legal information) Copyright Polar 1995-2005. All rights reserved. The information contained in this document is proprietary to Polar and may not be used or
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,
SplendidCRM Deployment Guide
SplendidCRM Deployment Guide Version 5.x Last Updated: December 14, 2010 Category: Deployment This guide is for informational purposes only. SPLENDIDCRM SOFTWARE MAKES NO WARRANTIES, EXPRESS OR IMPLIED,
Crystal Reports Installation Guide
Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks
4cast Server Specification and Installation
4cast Server Specification and Installation Version 2015.00 10 November 2014 Innovative Solutions for Education Management www.drakelane.co.uk System requirements Item Minimum Recommended Operating system
Perceptive Intelligent Capture. Product Migration Guide. with Supervised Learning. Version 5.5 SP3
Perceptive Intelligent Capture with Supervised Learning Product Migration Guide Version 5.5 SP3 Written by: Product Documentation, QA Date: March 2014 2014 Perceptive Software, Inc.. All rights reserved
IIS, FTP Server and Windows
IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:
Before you may use any database in Limnor, you need to create a database connection for it. Select Project menu, select Databases:
How to connect to Microsoft SQL Server Question: I have a personal version of Microsoft SQL Server. I tried to use Limnor with it and failed. I do not know what to type for the Server Name. I typed local,
Installation Guide: Delta Module Manager Launcher
Installation Guide: Delta Module Manager Launcher Overview... 2 Delta Module Manager Launcher... 2 Pre-Installation Considerations... 3 Hardware Requirements... 3 Software Requirements... 3 Virtualisation...
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
Using Internet or Windows Explorer to Upload Your Site
Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting
2.3 - Installing the moveon management module - SQL version
2.3 - Installing the moveon management module - SQL version The moveon management module consists of two elements: the moveon client and the moveon database. The moveon client contains all the program
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
Alteryx Predictive Analytics for Oracle R
Alteryx Predictive Analytics for Oracle R I. Software Installation In order to be able to use Alteryx s predictive analytics tools with an Oracle Database connection, your client machine must be configured
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
Ingenious Testcraft Technical Documentation Installation Guide
Ingenious Testcraft Technical Documentation Installation Guide V7.00R1 Q2.11 Trademarks Ingenious, Ingenious Group, and Testcraft are trademarks of Ingenious Group, Inc. and may be registered in the United
Upgrade ProTracker Advantage Access database to a SQL database
Many of our customers run the process themselves with great success. We are available to run the process for you or we can be available on standby from 9:00-5:00(Eastern) to provide assistance if needed.
DevInfo 7 Web Installer Guide
DevInfo 7 Web Installer Guide DevInfo Support Group Last updated: 10 September 2013 Abstract This guide defines the next steps to the DevInfo 7 Web Configuration after the installer has deployed the DevInfo
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
Server Installation, Administration and Integration Guide
Server Installation, Administration and Integration Guide Version 1.1 Last updated October 2015 2015 sitehelpdesk.com, all rights reserved TABLE OF CONTENTS 1 Introduction to WMI... 2 About Windows Management
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
GoDaddy (CentriqHosting): Data driven Web Application Deployment
GoDaddy (CentriqHosting): Data driven Web Application Deployment Process Summary There a several steps to deploying an ASP.NET website that includes databases (for membership and/or for site content and
CS WinOMS Practice Management Software Server Migration Help Guide
CS WinOMS Practice Management Software Server Migration Help Guide Checklist Prior to Beginning a Server Migration: A. The CS WinOMS install disk. Install files can be downloaded to server via FTP, contact
HOW TO DEPLOY AN EJB APLICATION IN WEBLOGIC SERVER 11GR1
HOW TO DEPLOY AN EJB APLICATION IN WEBLOGIC SERVER 11GR1 Last update: June 2011 Table of Contents 1 PURPOSE OF DOCUMENT 2 1.1 WHAT IS THE USE FOR THIS DOCUMENT 2 1.2 PREREQUISITES 2 1.3 BEFORE DEPLOYING
TECHNICAL NOTE. The following information is provided as a service to our users, customers, and distributors.
page 1 of 11 The following information is provided as a service to our users, customers, and distributors. ** If you are just beginning the process of installing PIPSPro 4.3.1 then please note these instructions
SpectraPro. SLQ Server databases
VMI AB SpectraPro SLQ Server databases Release date: February 2011 Doc Ref No. AN 02106 SpectraPro - SQL Server Databases SpectraPro - SQL Server databases 1. Introduction SpectraPro can create a machine
Enterprise Data Integration (EDI)
CHAPTER 14 This feature requires an optional Cisco license. The EDI menu appears only after the license is installed on the Cisco PAM server. See Obtaining and Installing Optional Feature Licenses, page
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