High Availability for PROS Pricing Solution Suite on SQL Server

Size: px
Start display at page:

Download "High Availability for PROS Pricing Solution Suite on SQL Server"

Transcription

1 High Availability for PROS Pricing Solution Suite on SQL Server Step-by-step guidance for setting up high availability for the PROS Pricing Solution Suite running on SQL Server 2008 R2 Enterprise Technical White Paper Published: March 2012 Applies to: Microsoft SQL Server 2008 R2 Enterprise Abstract Pricing is a powerful lever for improving business profits. Organizations can use the PROS Pricing Solution Suite (PPSS) to uncover the value that is hidden in their data and to improve their financial performance. Because continuous access to PROS data is critical for an organization, Microsoft SQL Server 2008 R2 provides technologies that can help ensure that business-critical data remains highly available. This white paper provides step-by-step guidance for setting up a high-availability solution for PPSS running on SQL Server 2008 R2 Enterprise. i

2 High Availability for the PROS Pricing Solution Suite Running on Microsoft SQL Server 2008R2 Enterprise 2012 Microsoft Corporation. All rights reserved. This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without notice. You bear the risk of using it. This document does not provide you with any legal rights to any intellectual property in any Microsoft product. You may copy and use this document for your internal, reference purposes. i

3 High Availability for the PROS Pricing Solution Suite Running on Microsoft SQL Server 2008R2 Enterprise Table of Contents Introduction... 1 Overview of Database Mirroring in SQL Server... 2 Options for Database Mirroring... 2 Database Mirroring for PROS... 2 Prerequisites... 3 How to Set Up Database Mirroring... 4 How to Configure PPSS to Support Failover by Using the Microsoft JDBC Driver... 5 Summary... 6 Links for More Information... 6 Additional Information... 7 About PROS... 7 About Microsoft... 7 ii

4 High Availability for the PROS Pricing Solution Suite Running on Microsoft SQL Server 2008R2 Enterprise Introduction PROS software is designed to meet the needs of business-to-business distributors with superior scalability, configurability, and upgradability. The PROS Pricing Solution Suite (PPSS) is a set of integrated software tools and supporting services based on three primary modules with differing database needs: Scientific Analytics (SA) Online analytical processing (OLAP) database Price Optimizer (PO) Online transaction processing (OLTP) database Deal Optimizer (DO) OLTP database SQL Server 2008 R2 provides an ideal database platform for PPSS with a combination of performance, functionality, ease of administration, and a unique, CPU-based pricing model. SQL Server is very easy to install and configure. When used with SQL Server, PPSS takes advantage of a relational database management system (RDBMS) as an OLTP database, in addition to the following technologies that are included in SQL Server 2008 R2: SQL Server Analysis Services SQL Server Analysis Services (SSAS) optimizes analytical query performance. SSAS is a fullfledged multidimensional OLAP (MOLAP) database engine that offers superior performance for an OLTP solution that is used for OLAP queries. SSAS also offers usage-based optimization that tracks user queries and builds aggregations to optimize those queries. With SSAS, the load resides on the database server and not on the application server. With competitors databases, OLAP cube calculations and dataspace manipulation reside on the application server inside the Java virtual machine(s) (JVMs). SQL Server Reporting Services SQL Server Reporting Services (SSRS) is an integrated reporting system that enables realtime, context-sensitive generation of PDF or Microsoft Excel based quotes. Keeping business data highly available is critical to organizations. SQL Server 2008 R2 Enterprise includes many technologies that can be used to minimize downtime and maximize data protection so that database administrators can ensure smooth operation, provide continuous access to business-critical data, and meet availability levels according to various service level agreements. This white paper introduces high availability (HA) for PPSS, and provides step-by-step guidance for setting up a solution that keeps PROS data continuously available. This white paper is targeted at database administrators and IT professionals who are tasked with architecting a high-availability and disaster-recovery strategy for their mission-critical applications. 1

5 To fully benefit from the information presented in this paper, readers should have a good understanding of Windows and SQL Server technologies and have sufficient knowledge of transaction processing. Readers should also understand the PROS PPSS deployment environment, including an understanding of how to modify and maintain PROS PPSS configuration files. Overview of Database Mirroring in SQL Server There are several technologies and architectures available in SQL Server for high availability and disaster recovery. These include failover clustering, log shipping, replication, scalable shared databases, and database mirroring. For PROS running on a SQL Server database platform, the recommended solution is database mirroring. Database mirroring is a software high-availability solution that supports almost instantaneous failover. Database mirroring is used to maintain a single standby database, called a mirror database, for a corresponding production database that is referred to as the principal database. The database mirroring configuration uses a principal server that contains the principal database, and a mirror server that contains the mirror database. The mirror server continuously brings the mirror database up to date with the principal database. Options for Database Mirroring Database mirroring runs with either synchronous operation in high-safety mode, or asynchronous operation in high-performance mode. High-performance mode In high-performance mode, the transactions commit without waiting for the mirror server to write the log to disk, which maximizes performance. High-safety mode In high-safety mode, a committed transaction is committed on both partners, but at the risk of increased transaction latency. In its simplest configuration, database mirroring involves only the principal and mirror servers. In this configuration, if the principal server is lost, the mirror server can be used as a warm standby server, with possible data loss. High-safety mode supports an alternative configuration with automatic failover. This configuration involves a third server instance, known as a witness, that enables the mirror server to act as a hot standby server. Failover from the principal database to the mirror database typically takes several seconds. Database Mirroring for PROS For PPSS running on SQL Server, synchronous database mirroring is recommended to maintain an up-to-date, redundant copy of a single database by continually sending transaction log records from the principal database on the principal server to the mirror database on the mirror server. 2

6 If a failure occurs, the mirror database can be brought online as the new principal database and client connections can be failed over. As long as the mirror database remains synchronized with the principal database, zero data loss results when a failover is necessary. Database mirroring is typically a lower cost solution than one that involves failover clustering, because the principal and mirror servers can be standalone servers with direct-attached storage, rather than each server being a part of a multi-server failover cluster with storage area network (SAN). The recommended architecture for database mirroring is shown in Figure 1. Figure 1. Database mirroring architecture Prerequisites Before you begin to set up database mirroring for PPSS, be sure you that meet the following prerequisites: Check to see if the servers participating in mirroring are running under the same service account. If not, you will need to add the service account for the principal server as a sysadmin on the mirror instance and vice versa. Make sure the instances are running the same edition and patch level of SQL Server. This can be checked with the SQL Statement 3

7 Also make sure that your instance supports database mirroring. For more information, see the MSDN article Features Supported by the Editions of SQL Server 2008 R2. How to Set Up Database Mirroring The following instructions describe how to set up synchronous database mirroring with no witness. 1. Begin with the principal instance. Put the database you want to mirror in FULL recovery mode. For example: BACKUP DATABASE AdventureWorksLT2008 TO DISK = 'c:\adventureworkslt2008.bak' BACKUP LOG AdventureWorksLT2008 TO DISK = 'c:\adventureworkslt2008.trn' 2. Copy the backups that you made on the principal instance to the mirror instance. 3. On the mirror instance, restore the database and log with the NORECOVERY option. For example: RESTORE Database AdventureWorksLT2008 FROM DISK = 'c:\adventureworkslt2008.bak' WITH MOVE 'AdventureWorksLT2008_Data' TO 'E:\MSSQL10.MSSQLSERVER\MSSQL\DATA\AdventureWorksLT2008.mdf', MOVE 'AdventureWorksLT2008_Log' TO 'E:\MSSQL10.MSSQLSERVER\MSSQL\DATA\AdventureWorksLT2008.ldf', NORECOVERY 6: RESTORE LOG AdventureWorksLT2008 FROM DISK = 'c:\adventureworkslt2008.trn' WITH NORECOVERY 4. On the principal instance, right-click on the database that you are going to mirror, click Tasks, and then click Mirror. 5. Click Configure Security. This launches the Configure Database Mirroring Security Wizard. 6. Click Next on the initial screen. On the Include Witness Server dialog box, select No. 7. On the Principal Server Instance dialog box, leave the default settings, and then click Next. 8. On the Mirror Server Instance dialog box, type the name of the server that you will be mirroring. Click Connect. Leave the port and endpoint name with the defaults, and then click Next. 9. Type in the names of the accounts used to mirror the data. Click Finish. 10. You will see a dialog box documenting the different endpoints and mirroring configuration. Click Do Not Start Mirroring so you can review the settings before mirroring. 4

8 11. Ensure that the operating mode is set to High safety (synchronous). 12. Click Start Mirroring. After a few minutes, you should see the status change to "Synchronized." How to Configure PPSS to Support Failover by Using the Microsoft JDBC Driver The following steps describe how to configure PPSS to use the Microsoft Java database connectivity (JDBC) driver to support automatic failover. 1. Shut down PPSS. 2. Download the latest Microsoft JDBC Driver ( 3. Unzip the Microsoft JDBC Driver, and then copy the sqljdbc4.jar file to the [PROS_INSTALL_HOME]\build\lib\ext directory. 4. Open and modify the file properties of [PROS_INSTALL_HOME]\build\config\systemproperties\pdk\dbdrivers. as follows: a. Change the following: dbdriver.names = oracle jtds to: dbdriver.names = oracle jtds microsoft b. Add the following test: dbdriver.microsoft.desc = Microsoft SQL Server (using Microsoft JDBC) dbdriver.microsoft.datasource = com.microsoft.sqlserver.jdbc.sqlserverconnectionpooldatasource dbdriver.microsoft.prompts = host port dbname user passwd dbdriver.microsoft.prompt.port.default = 1433 dbdriver.microsoft.prompt.dbname.validregexp = ^[_\\p{l}][@#\\$_\\p{l}\\p{nd}]{0,127}$ dbdriver.microsoft.call.1.string.setservername = ${host} dbdriver.microsoft.call.2.int.setportnumber = ${port} dbdriver.microsoft.call.3.string.setdatabasename = ${dbname} dbdriver.microsoft.call.4.string.setuser = ${user} dbdriver.microsoft.call.5.string.setpassword = ${passwd} dbdriver.microsoft.call.6.string.setdescription = ${dbdriver.microsoft.desc} dbdriver.microsoft.call.7.boolean.setsendstringparametersasunicod e = false dbdriver.microsoft.call.8.string.setfailoverpartner = <mirror instance> 5

9 Note Be sure to include the correct mirrored instance server host in the <mirror instance> option above. 5. Under [PROS_INSTALL_HOME]\build\bin, run CreateDataSource new, and then choose the using Microsoft JDBC driver option. Summary PROS Pricing Solution Suite customers demand around-the-clock access to their data so that they can make critical pricing decisions decisions that can save their companies millions of dollars or help successfully close important deals. Using the guidance provided in this white paper, customers can set up a cost-effective, high-performance, and robust HA environment for PPSS running on SQL Server 2008 R2 that can meet their needs. Links for More Information The white paper High-Availability with SQL Server 2008 ( contains information about each of the high-availability technologies included in SQL Server 2008, in addition to links to other white papers and technical resources with more information. The white paper: Proven SQL Server Architectures for High Availability and Disaster Recovery ( provides guidance for selecting an appropriate architecture to provide high availability.. 6

10 Additional Information The following references provide more information about PROS and Microsoft. About PROS PROS is a leading provider of pricing and revenue optimization software. Founded in 1985, PROS s pricing and revenue optimization software covers customers in a variety of industries, including both B2B and B2C companies. The company s products support pricing decisions through the aggregation and analysis of enterprise application data, transactional data, and market information. PROS s pricing software products calculate pocket price, pocket margin, customer willingness to pay, customer cost to serve, win-loss ratios, price envelope, and other price-specific data. PROS s core offering is the PROS Pricing Solution Suite (PPSS), a set of integrated software products that enables enterprises to apply pricing science to determine, analyze, and execute optimal pricing strategies. The product suite consists of scientific analytics, price optimization, and deal optimization software. For more information, visit About Microsoft At Microsoft, we're motivated and inspired every day by how our customers use our software to find creative solutions to business problems, develop breakthrough ideas, and stay connected to what's most important to them. We run our business in much the same way, and believe our five business divisions Windows and Windows Live, Server and Tools, Online Services, Microsoft Business, and Entertainment and Devices offer the greatest potential to serve our customers. For more information about Microsoft products and services, call the Microsoft Sales Information Center at (800) In Canada, call the Microsoft Canada Information Centre at (877) Customers who are deaf or hard-of-hearing can reach Microsoft text telephone (TTY/TDD) services at (800) in the United States or (905) in Canada. Outside the United States and Canada, please contact your local Microsoft subsidiary. For more information, contact your local Microsoft Sales Representative, or visit 7

Microsoft SQL Server

Microsoft SQL Server Microsoft SQL Server Abstract This white paper outlines the best practices for Microsoft SQL Server Failover Cluster Instance data protection with Cohesity DataPlatform. December 2017 Table of Contents

More information

DOWNLOAD PDF SQL SERVER 2012 STEP BY STEP

DOWNLOAD PDF SQL SERVER 2012 STEP BY STEP Chapter 1 : Microsoft SQL Server Step by Step - PDF Free Download - Fox ebook Your hands-on, step-by-step guide to building applications with Microsoft SQL Server Teach yourself the programming fundamentals

More information

Avoiding the Cost of Confusion: SQL Server Failover Cluster Instances versus Basic Availability Group on Standard Edition

Avoiding the Cost of Confusion: SQL Server Failover Cluster Instances versus Basic Availability Group on Standard Edition One Stop Virtualization Shop Avoiding the Cost of Confusion: SQL Server Failover Cluster Instances versus Basic Availability Group on Standard Edition Written by Edwin M Sarmiento, a Microsoft Data Platform

More information

Microsoft SQL Server" 2008 ADMINISTRATION. for ORACLE9 DBAs

Microsoft SQL Server 2008 ADMINISTRATION. for ORACLE9 DBAs Microsoft SQL Server" 2008 ADMINISTRATION for ORACLE9 DBAs Contents Acknowledgments *v Introduction xvii Chapter 1 Introduction to the SQL Server Platform 1 SQLServer Editions 2 Premium Editions 3 Core

More information

Swiss IT Pro SQL Server 2005 High Availability Options Agenda: - Availability Options/Comparison - High Availability Demo 08 August :45-20:00

Swiss IT Pro SQL Server 2005 High Availability Options Agenda: - Availability Options/Comparison - High Availability Demo 08 August :45-20:00 Swiss IT Pro Agenda: SQL Server 2005 High Availability Options - Availability Options/Comparison - High Availability Demo 08 August 2006 17:45-20:00 SQL Server 2005 High Availability Options Charley Hanania

More information

New England Data Camp v2.0 It is all about the data! Caregroup Healthcare System. Ayad Shammout Lead Technical DBA

New England Data Camp v2.0 It is all about the data! Caregroup Healthcare System. Ayad Shammout Lead Technical DBA New England Data Camp v2.0 It is all about the data! Caregroup Healthcare System Ayad Shammout Lead Technical DBA ashammou@caregroup.harvard.edu About Caregroup SQL Server Database Mirroring Selected SQL

More information

Are AGs A Good Fit For Your Database? Doug Purnell

Are AGs A Good Fit For Your Database? Doug Purnell Are AGs A Good Fit For Your Database? Doug Purnell About Me DBA for Elon University Co-leader for WinstonSalem BI User Group All things Nikon Photography Bring on the BBQ! Goals Understand HA & DR Types

More information

Sage MAS 200 SQL Server Edition Introduction and Overview

Sage MAS 200 SQL Server Edition Introduction and Overview Sage MAS 200 SQL Server Edition Introduction and Overview February 2006 1 TABLE OF CONTENTS Introduction... 3 Business Applications and Appropriate Technology... 3 Industry Standard...3 Rapid Deployment...4

More information

Microsoft. Designing Business Intelligence Solutions with Microsoft SQL Server 2012

Microsoft. Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Microsoft 70-467 Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Download Full Version : http://killexams.com/pass4sure/exam-detail/70-467 QUESTION: 50 Your network contains the

More information

2788 : Designing High Availability Database Solutions Using Microsoft SQL Server 2005

2788 : Designing High Availability Database Solutions Using Microsoft SQL Server 2005 2788 : Designing High Availability Database Solutions Using Microsoft SQL Server 2005 Introduction Elements of this syllabus are subject to change. This three-day instructor-led course provides students

More information

SQL Server 2012 virtually out, Microsoft talks features, licensing

SQL Server 2012 virtually out, Microsoft talks features, licensing SQL Server 2012 virtually out, Microsoft talks features, licensing If you had to pick one or two features that are most important in SQL Server 2012, what are they and why? Mark Kromer: If I had to pick

More information

Maximum Availability Architecture: Overview. An Oracle White Paper July 2002

Maximum Availability Architecture: Overview. An Oracle White Paper July 2002 Maximum Availability Architecture: Overview An Oracle White Paper July 2002 Maximum Availability Architecture: Overview Abstract...3 Introduction...3 Architecture Overview...4 Application Tier...5 Network

More information

StarWind Virtual SAN Windows Geo-Clustering: SQL Server

StarWind Virtual SAN Windows Geo-Clustering: SQL Server #1 HyperConverged Appliance for SMB and ROBO StarWind Virtual SAN Windows Geo-Clustering: SQL Server FEBRUARY 2016 TECHNICAL PAPER EDWIN SARMIENTO, Microsoft SQL Server MVP, Microsoft Certified Master

More information

Microsoft Dynamics AX 2012 Installation Guide

Microsoft Dynamics AX 2012 Installation Guide 2012 Installation Guide Microsoft Corporation Published: November 2012 Note: Some of the information in this guide applies only to Microsoft Dynamics AX 2012 R2 installations, and some information applies

More information

High Availability- Disaster Recovery 101

High Availability- Disaster Recovery 101 High Availability- Disaster Recovery 101 DBA-100 Glenn Berry, Principal Consultant, SQLskills.com Glenn Berry Consultant/Trainer/Speaker/Author Principal Consultant, SQLskills.com Email: Glenn@SQLskills.com

More information

High Availability and Disaster Recovery features in Microsoft Exchange Server 2007 SP1

High Availability and Disaster Recovery features in Microsoft Exchange Server 2007 SP1 High Availability and Disaster Recovery features in Microsoft Exchange Server 2007 SP1 Product Group - Enterprise Dell White Paper By Farrukh Noman Ananda Sankaran April 2008 Contents Introduction... 3

More information

High Availability- Disaster Recovery 101

High Availability- Disaster Recovery 101 High Availability- Disaster Recovery 101 DBA-100 Glenn Berry, Principal Consultant, SQLskills.com Glenn Berry Consultant/Trainer/Speaker/Author Principal Consultant, SQLskills.com Email: Glenn@SQLskills.com

More information

Dynamics 365. for Finance and Operations, Enterprise edition (onpremises) system requirements

Dynamics 365. for Finance and Operations, Enterprise edition (onpremises) system requirements Dynamics 365 ignite for Finance and Operations, Enterprise edition (onpremises) system requirements This document describes the various system requirements for Microsoft Dynamics 365 for Finance and Operations,

More information

Carbonite Availability. Technical overview

Carbonite Availability. Technical overview Carbonite Availability Technical overview Table of contents Executive summary The availability imperative...3 True real-time replication More efficient and better protection... 4 Robust protection Reliably

More information

Focus On: Oracle Database 11g Release 2

Focus On: Oracle Database 11g Release 2 Focus On: Oracle Database 11g Release 2 Focus on: Oracle Database 11g Release 2 Oracle s most recent database version, Oracle Database 11g Release 2 [11g R2] is focused on cost saving, high availability

More information

<Insert Picture Here> Value of TimesTen Oracle TimesTen Product Overview

<Insert Picture Here> Value of TimesTen Oracle TimesTen Product Overview Value of TimesTen Oracle TimesTen Product Overview Shig Hiura Sales Consultant, Oracle Embedded Global Business Unit When You Think Database SQL RDBMS Results RDBMS + client/server

More information

Activant Solutions Inc. SQL 2005: Server Management

Activant Solutions Inc. SQL 2005: Server Management Activant Solutions Inc. SQL 2005: Server Management SQL Server 2005 suite Course 3 of 4 This class is designed for Beginner/Intermediate SQL Server 2005 System Administrators Objectives Create Maintenance

More information

Advanced Architectures for Oracle Database on Amazon EC2

Advanced Architectures for Oracle Database on Amazon EC2 Advanced Architectures for Oracle Database on Amazon EC2 Abdul Sathar Sait Jinyoung Jung Amazon Web Services November 2014 Last update: April 2016 Contents Abstract 2 Introduction 3 Oracle Database Editions

More information

EXAM Administering Microsoft SQL Server 2012 Databases. Buy Full Product.

EXAM Administering Microsoft SQL Server 2012 Databases. Buy Full Product. Microsoft EXAM - 70-462 Administering Microsoft SQL Server 2012 Databases Buy Full Product http://www.examskey.com/70-462.html Examskey Microsoft 70-462 exam demo product is here for you to test the quality

More information

Egypt s Bavarian Auto Group Deploys SAP On SQL Server 2005 to Support Rapid Growth

Egypt s Bavarian Auto Group Deploys SAP On SQL Server 2005 to Support Rapid Growth Microsoft SQL Server Customer Solution Case Study Egypt s Bavarian Auto Group Deploys SAP On SQL Server 2005 to Support Rapid Growth Overview Country or Region: Egypt Industry: Manufacturing Automotive

More information

Microsoft SQL Server Training Course Catalogue. Learning Solutions

Microsoft SQL Server Training Course Catalogue. Learning Solutions Training Course Catalogue Learning Solutions Querying SQL Server 2000 with Transact-SQL Course No: MS2071 Two days Instructor-led-Classroom 2000 The goal of this course is to provide students with the

More information

Index. Peter A. Carter 2016 P.A. Carter, SQL Server AlwaysOn Revealed, DOI /

Index. Peter A. Carter 2016 P.A. Carter, SQL Server AlwaysOn Revealed, DOI / Index A Active node, 10 Advanced Encryption Standard (AES), 95 AlwaysOn administration Availability Group (see AlwaysOn Availability Groups) cluster maintenance, 149 Cluster Node Configuration page, 153

More information

M i c r o s o f t S Q L S e r v e r I n s t a l l a t i o n G u i d e for A D S S S e r v e r

M i c r o s o f t S Q L S e r v e r I n s t a l l a t i o n G u i d e for A D S S S e r v e r M i c r o s o f t S Q L S e r v e r I n s t a l l a t i o n G u i d e for A D S S S e r v e r A S C E R T I A LTD S E P T E M B E R 2 0 1 8 D o c u m e n t V e r s i o n - 5.9. 0. 1 Ascertia Limited. All

More information

A CommVault White Paper: Business Continuity: Architecture Design Guide

A CommVault White Paper: Business Continuity: Architecture Design Guide A CommVault White Paper: Business Continuity: Architecture Design Guide CommVault Corporate Headquarters 2 Crescent Place Oceanport, New Jersey 07757-0900 USA Telephone: 888.746.3849 or 732.870.4000 2007

More information

Accelerate SQL Server 2012 AlwaysOn Availability Groups Deployment on NetApp Storage

Accelerate SQL Server 2012 AlwaysOn Availability Groups Deployment on NetApp Storage Technical Report Accelerate SQL Server 2012 AlwaysOn Availability Groups Deployment on NetApp Storage Pat Sinthusan, NetApp October 2012 TR-4106 TABLE OF CONTENTS 1 Introduction... 4 2 Audience... 4 3

More information

Deccansoft Software Services Microsoft Silver Learning Partner. SSAS Syllabus

Deccansoft Software Services Microsoft Silver Learning Partner. SSAS Syllabus Overview: Analysis Services enables you to analyze large quantities of data. With it, you can design, create, and manage multidimensional structures that contain detail and aggregated data from multiple

More information

HPE Data Replication Solution Service for HPE Business Copy for P9000 XP Disk Array Family

HPE Data Replication Solution Service for HPE Business Copy for P9000 XP Disk Array Family Data sheet HPE Data Replication Solution Service for HPE Business Copy for P9000 XP Disk Array Family HPE Lifecycle Event Services HPE Data Replication Solution Service provides implementation of the HPE

More information

EMC Integrated Infrastructure for VMware. Business Continuity

EMC Integrated Infrastructure for VMware. Business Continuity EMC Integrated Infrastructure for VMware Business Continuity Enabled by EMC Celerra and VMware vcenter Site Recovery Manager Reference Architecture Copyright 2009 EMC Corporation. All rights reserved.

More information

EASYHA SQL SERVER V1.0

EASYHA SQL SERVER V1.0 EASYHA SQL SERVER V1.0 CONTENTS 1 Introduction... 2 2 Install SQL 2016 in Azure... 3 3 Windows Failover Cluster Feature Installation... 7 4 Windows Failover Clustering Configuration... 9 4.1 Configure

More information

TANDBERG Management Suite - Redundancy Configuration and Overview

TANDBERG Management Suite - Redundancy Configuration and Overview Management Suite - Redundancy Configuration and Overview TMS Software version 11.7 TANDBERG D50396 Rev 2.1.1 This document is not to be reproduced in whole or in part without the permission in writing

More information

5/24/ MVP SQL Server: Architecture since 2010 MCT since 2001 Consultant and trainer since 1992

5/24/ MVP SQL Server: Architecture since 2010 MCT since 2001 Consultant and trainer since 1992 2014-05-20 MVP SQL Server: Architecture since 2010 MCT since 2001 Consultant and trainer since 1992 @SoQooL http://blog.mssqlserver.se Mattias.Lind@Sogeti.se 1 The evolution of the Microsoft data platform

More information

Database Mirroring & Snapshots SQL Server 2008

Database Mirroring & Snapshots SQL Server 2008 Database Mirroring & Snapshots DB Architechs, USA 1 DB Architechs, France Agenda SQL Server User Group Database Mirroring Database Mirroring 2005 vs 2008 benchmark Database Snapshots SQL Performance &

More information

PRIMEQUEST 400 Series & SQL Server 2005 Technical Whitepaper (November, 2005)

PRIMEQUEST 400 Series & SQL Server 2005 Technical Whitepaper (November, 2005) PRIMEQUEST 400 Series & SQL Server 2005 Technical Whitepaper (November, 2005) Fujitsu Limited PRIMEQUEST 400 Series & SQL Server 2005 Technical White Paper PRIMEQUEST 400 Series Server & SQL Server 2005

More information

Survey of Oracle Database

Survey of Oracle Database Survey of Oracle Database About Oracle: Oracle Corporation is the largest software company whose primary business is database products. Oracle database (Oracle DB) is a relational database management system

More information

NEC Express5800 R320f Fault Tolerant Servers & NEC ExpressCluster Software

NEC Express5800 R320f Fault Tolerant Servers & NEC ExpressCluster Software NEC Express5800 R320f Fault Tolerant Servers & NEC ExpressCluster Software Downtime Challenges and HA/DR Solutions Undergoing Paradigm Shift with IP Causes of Downtime: Cost of Downtime: HA & DR Solutions:

More information

Implementation of Microsoft SQL Server using AlwaysOn for High Availability and Disaster Recovery without Shared Storage

Implementation of Microsoft SQL Server using AlwaysOn for High Availability and Disaster Recovery without Shared Storage International Journal of Experiential Learning & Case Studies 3 : 1 ( June 2018) pp. 09-17 Implementation of Microsoft SQL Server using AlwaysOn for High Availability and Disaster Recovery without Shared

More information

An Oracle White Paper May Oracle VM 3: Overview of Disaster Recovery Solutions

An Oracle White Paper May Oracle VM 3: Overview of Disaster Recovery Solutions An Oracle White Paper May 2014 Oracle VM 3: Overview of Disaster Recovery Solutions Contents Introduction... 1 Overview of DR Solutions with Oracle VM... 2 Choose your DR solution path... 2 Continuous

More information

OL Connect Backup licenses

OL Connect Backup licenses OL Connect Backup licenses Contents 2 Introduction 3 What you need to know about application downtime 5 What are my options? 5 Reinstall, reactivate, and rebuild 5 Create a Virtual Machine 5 Run two servers

More information

Oracle WebLogic Server 12c: Administration I

Oracle WebLogic Server 12c: Administration I Oracle WebLogic Server 12c: Administration I Duration 5 Days What you will learn This Oracle WebLogic Server 12c: Administration I training teaches you how to install and configure Oracle WebLogic Server

More information

Chapter 1: Introducing SQL Server

Chapter 1: Introducing SQL Server Leiter ftoc.tex V3-03/25/2009 1:31pm Page xv Introduction xxvii Chapter 1: Introducing SQL Server 2008 1 A Condensed History of SQL Server 1 In the Beginning 1 The Evolution of a Database 1 Microsoft Goes

More information

White paper High Availability - Solutions and Implementations

White paper High Availability - Solutions and Implementations White paper High Availability - Solutions and Implementations With ever-increasing pressure to remain online and attend to customer needs, IT systems need to constantly review and adapt their solutions

More information

Defining a Service Level Agreement (SLA)

Defining a Service Level Agreement (SLA) C H A P T E R 1 4 Fault Tolerance bwininteractive Entertainment AG is a company that operates platforms for sports betting, casino games, and games of skill. The sports betting infrastructure supports

More information

High Availability and Disaster Recovery Solutions for Perforce

High Availability and Disaster Recovery Solutions for Perforce High Availability and Disaster Recovery Solutions for Perforce This paper provides strategies for achieving high Perforce server availability and minimizing data loss in the event of a disaster. Perforce

More information

EMC Business Continuity for Microsoft SharePoint Server (MOSS 2007)

EMC Business Continuity for Microsoft SharePoint Server (MOSS 2007) EMC Business Continuity for Microsoft SharePoint Server (MOSS 2007) Enabled by EMC Symmetrix DMX-4 4500 and EMC Symmetrix Remote Data Facility (SRDF) Reference Architecture EMC Global Solutions 42 South

More information

Maximum Availability Architecture on Dell PowerEdge Servers and Dell/EMC Storage over Wide Area Networks

Maximum Availability Architecture on Dell PowerEdge Servers and Dell/EMC Storage over Wide Area Networks Implementing Oracle Database 10g0 Maximum Availability Architecture on Dell PowerEdge Servers and Dell/EMC Storage over Wide Area Networks The high cost of downtime has prompted many organizations to view

More information

BusinessObjects XI Release 2

BusinessObjects XI Release 2 Overview Contents The purpose of this document is to outline recommended steps to back up and recover data for key BusinessObjects XI Release 2 system components. These procedures are used to mitigate

More information

Contents Overview of the Gateway Performance and Sizing Guide... 5 Primavera Gateway System Architecture... 7 Performance Considerations...

Contents Overview of the Gateway Performance and Sizing Guide... 5 Primavera Gateway System Architecture... 7 Performance Considerations... Gateway Performance and Sizing Guide for On-Premises Version 17 July 2017 Contents Overview of the Gateway Performance and Sizing Guide... 5 Prerequisites... 5 Oracle Database... 5 WebLogic... 6 Primavera

More information

HIGH-AVAILABILITY & D/R OPTIONS FOR MICROSOFT SQL SERVER

HIGH-AVAILABILITY & D/R OPTIONS FOR MICROSOFT SQL SERVER SQL SATURDAY # 91 - OMAHA HIGH-AVAILABILITY & D/R OPTIONS FOR MICROSOFT SQL SERVER 8/27/11 Tim Plas, Virteva tim.plas@virteva.com 1 The Presenter Tim Plas, Principal Consultant at Virteva (Mpls) Operational

More information

Zero impact database migration

Zero impact database migration Zero impact database migration How to avoid the most common pitfalls of migrating from Oracle to SQL Server. ABSTRACT Migrating data from one platform to another requires a lot of planning. Some traditional

More information

Maintaining a Microsoft SQL Server 2005 Database Course 2780: Three days; Instructor-Led

Maintaining a Microsoft SQL Server 2005 Database Course 2780: Three days; Instructor-Led Maintaining a Microsoft SQL Server 2005 Database Course 2780: Three days; Instructor-Led Introduction This three-day instructor-led course provides students with product knowledge and skills needed to

More information

Asigra Cloud Backup Provides Comprehensive Virtual Machine Data Protection Including Replication

Asigra Cloud Backup Provides Comprehensive Virtual Machine Data Protection Including Replication Datasheet Asigra Cloud Backup Provides Comprehensive Virtual Machine Data Protection Including Replication Virtual Machines (VMs) have become a staple of the modern enterprise data center, but as the usage

More information

Ryan Adams Blog - Twitter MIRRORING: START TO FINISH

Ryan Adams Blog -  Twitter  MIRRORING: START TO FINISH Ryan Adams Blog - http://ryanjadams.com Twitter - @ryanjadams Email ryan@ryanjadams.com MIRRORING: START TO FINISH Objectives Define Mirroring Describe how mirroring fits into HA and DR Terminology The

More information

Microsoft Skype for Business Deployment Guide. High-Availability Deployment

Microsoft Skype for Business Deployment Guide. High-Availability Deployment Microsoft Skype for Business Deployment Guide High-Availability Deployment 12/8/2017 High-Availability Deployment Contents 1 High-Availability Deployment 1.1 Skype for Business High Availability 1.2 T-Server

More information

Introduction. Architecture Overview

Introduction. Architecture Overview Performance and Sizing Guide Version 17 November 2017 Contents Introduction... 5 Architecture Overview... 5 Performance and Scalability Considerations... 6 Vertical Scaling... 7 JVM Heap Sizes... 7 Hardware

More information

Advanced Solutions of Microsoft SharePoint Server 2013 Course Contact Hours

Advanced Solutions of Microsoft SharePoint Server 2013 Course Contact Hours Advanced Solutions of Microsoft SharePoint Server 2013 Course 20332 36 Contact Hours Course Overview This course examines how to plan, configure, and manage a Microsoft SharePoint Server 2013 environment.

More information

Advanced Solutions of Microsoft SharePoint 2013

Advanced Solutions of Microsoft SharePoint 2013 Course 20332A :Advanced Solutions of Microsoft SharePoint 2013 Page 1 of 9 Advanced Solutions of Microsoft SharePoint 2013 Course 20332A: 4 days; Instructor-Led About the Course This four-day course examines

More information

Windows Clustering 101

Windows Clustering 101 Windows Clustering 101 Dave Bermingham, Microsoft Clustering MVP, Senior Technical Evangelist, SIOS Technology Corp. Dave Bermingham Microsoft Cluster MVP (2010-current) Founder of www.clusteringformeremortals.com

More information

IBM Z servers running Oracle Database 12c on Linux

IBM Z servers running Oracle Database 12c on Linux IBM Z servers running Oracle Database 12c on Linux Put Z to work for you Scale and grow Oracle Database 12c applications and data with confidence Benefit from mission-critical reliability for Oracle Database

More information

Decrease IT Cost. Using SQL Server 2012 to. eguide. By Michael K. Campbell

Decrease IT Cost. Using SQL Server 2012 to. eguide. By Michael K. Campbell eguide Using SQL Server 2012 to Decrease IT Cost By Michael K. Campbell SQL Server 2012 represents a major release, one that provides a number of new features, options, tools, capabilities, and benefits

More information

NEC ExpressCluster Introduction.

NEC ExpressCluster Introduction. NEC ExpressCluster Introduction www.expresscluster.com ExpressCluster Overview Software for no-click fully automated recovery of critical application and data systems from hardware, software and site failures

More information

DELL MICROSOFT REFERENCE CONFIGURATIONS PHASE II 7 TERABYTE DATA WAREHOUSE

DELL MICROSOFT REFERENCE CONFIGURATIONS PHASE II 7 TERABYTE DATA WAREHOUSE DELL MICROSOFT REFERENCE CONFIGURATIONS PHASE II 7 TERABYTE DATA WAREHOUSE Deploying Microsoft SQL Server 2005 Business Intelligence and Data Warehousing Solutions on Dell PowerEdge Servers and Dell PowerVault

More information

QLogic 2500 Series FC HBAs Accelerate Application Performance

QLogic 2500 Series FC HBAs Accelerate Application Performance QLogic 2500 Series FC HBAs Accelerate QLogic 8Gb Fibre Channel Adapters from Cavium: Planning for Future Requirements 8Gb Performance Meets the Needs of Next-generation Data Centers EXECUTIVE SUMMARY It

More information

Cement Manufacturer Gains High Availability, Improves Business Performance with Real Time Reports

Cement Manufacturer Gains High Availability, Improves Business Performance with Real Time Reports Microsoft SQL Server Customer Solution Case Study Cement Manufacturer Gains High Availability, Improves Business Performance with Real Time Reports Overview Country or Region: India Industry: Manufacturing

More information

Full file at https://fratstock.eu

Full file at https://fratstock.eu Chapter 2: Installing and Upgrading SQL Server 2000 Objectives After reading this chapter and completing the exercises, students will be able to: Understand hardware and software requirements before installing

More information

EMC Business Continuity for Microsoft Applications

EMC Business Continuity for Microsoft Applications EMC Business Continuity for Microsoft Applications Enabled by EMC Celerra, EMC MirrorView/A, EMC Celerra Replicator, VMware Site Recovery Manager, and VMware vsphere 4 Copyright 2009 EMC Corporation. All

More information

Manual Sql Server Enterprise Manager 2005 Developer Edition

Manual Sql Server Enterprise Manager 2005 Developer Edition Manual Sql Server Enterprise Manager 2005 Developer Edition Um Enterprise Manager und andere Programme, die SQL-DMO abhängig sind, Server 2005 Developer Edition, Microsoft SQL Server 2005 Express Edition.

More information

Microsoft SQL Server More solutions. More value. More reasons to buy.

Microsoft SQL Server More solutions. More value. More reasons to buy. Microsoft SQL Server 2005 More solutions. More value. More reasons to buy. Microsoft SQL Server 2005 is a nextgeneration data management and analysis solution. A solution that helps organizations deliver

More information

DATABASE SCALE WITHOUT LIMITS ON AWS

DATABASE SCALE WITHOUT LIMITS ON AWS The move to cloud computing is changing the face of the computer industry, and at the heart of this change is elastic computing. Modern applications now have diverse and demanding requirements that leverage

More information

Introducing VMware Validated Designs for Software-Defined Data Center

Introducing VMware Validated Designs for Software-Defined Data Center Introducing VMware Validated Designs for Software-Defined Data Center VMware Validated Design for Software-Defined Data Center 3.0 This document supports the version of each product listed and supports

More information

Exadata Implementation Strategy

Exadata Implementation Strategy Exadata Implementation Strategy BY UMAIR MANSOOB 1 Who Am I Work as Senior Principle Engineer for an Oracle Partner Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist

More information

What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan

What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan PostgreSQL is an Enterprise RDBMS Schemas, Roles, Accounts Tablespace Management Table Partitioning Write-Ahead

More information

Simplifying Downtime Prevention for Industrial Plants. A Guide to the Five Most Common Deployment Approaches

Simplifying Downtime Prevention for Industrial Plants. A Guide to the Five Most Common Deployment Approaches Simplifying Downtime Prevention for Industrial Plants A Guide to the Five Most Common Deployment Approaches Simplifying Downtime Prevention for Industrial Plants: A Guide to the Five Most Common Deployment

More information

PERFORMING MICROSOFT SQL ALWAYSON AVAILABILITY GROUP BACKUPS ON AMAZON WEB SERVER AND MICROSOFT AZURE WITH DELL EMC AVAMAR

PERFORMING MICROSOFT SQL ALWAYSON AVAILABILITY GROUP BACKUPS ON AMAZON WEB SERVER AND MICROSOFT AZURE WITH DELL EMC AVAMAR PERFORMING MICROSOFT SQL ALWAYSON AVAILABILITY GROUP BACKUPS ON AMAZON WEB SERVER AND MICROSOFT AZURE WITH DELL EMC AVAMAR November 2017 ABSTRACT This white paper describes how to configure a Microsoft

More information

August Oracle - GoldenGate Statement of Direction

August Oracle - GoldenGate Statement of Direction August 2015 Oracle - GoldenGate Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle. Your

More information

1 How These Notes Are Organized. 2 Certification Information

1 How These Notes Are Organized. 2 Certification Information Oracle Fail Safe Release Notes Release 4.1.1 for Microsoft Windows E57060-01 January 2015 This document describes the new features in this release, software errors fixed, software compatibility, hardware

More information

Oracle Exadata: Strategy and Roadmap

Oracle Exadata: Strategy and Roadmap Oracle Exadata: Strategy and Roadmap - New Technologies, Cloud, and On-Premises Juan Loaiza Senior Vice President, Database Systems Technologies, Oracle Safe Harbor Statement The following is intended

More information

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Maintaining a Microsoft SQL Server 2008 Database OVERVIEW About this Course Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the

More information

The Right Choice for DR: Data Guard, Stretch Clusters, or Remote Mirroring. Ashish Ray Group Product Manager Oracle Corporation

The Right Choice for DR: Data Guard, Stretch Clusters, or Remote Mirroring. Ashish Ray Group Product Manager Oracle Corporation The Right Choice for DR: Data Guard, Stretch Clusters, or Remote Mirroring Ashish Ray Group Product Manager Oracle Corporation Causes of Downtime Unplanned Downtime Planned Downtime System Failures Data

More information

Veritas Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Enterprise Vault

Veritas Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Enterprise Vault Veritas Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Enterprise Vault Windows Server 2003 Windows Server 2008 5.1 Service Pack 1 Veritas Storage Foundation

More information

EMC Backup and Recovery for Microsoft Exchange 2007

EMC Backup and Recovery for Microsoft Exchange 2007 EMC Backup and Recovery for Microsoft Exchange 2007 Enabled by EMC CLARiiON CX4-120, Replication Manager, and Hyper-V on Windows Server 2008 using iscsi Reference Architecture Copyright 2009 EMC Corporation.

More information

Step into the future. HP Storage Summit Converged storage for the next era of IT

Step into the future. HP Storage Summit Converged storage for the next era of IT HP Storage Summit 2013 Step into the future Converged storage for the next era of IT 1 HP Storage Summit 2013 Step into the future Converged storage for the next era of IT Karen van Warmerdam HP XP Product

More information

QuickStart Guide vcenter Server Heartbeat 5.5 Update 1 EN

QuickStart Guide vcenter Server Heartbeat 5.5 Update 1 EN vcenter Server Heartbeat 5.5 Update 1 EN-000205-00 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the

More information

Alfresco 2.1. Backup and High Availability Guide

Alfresco 2.1. Backup and High Availability Guide Copyright (c) 2007 by Alfresco and others. Information in this document is subject to change without notice. No part of this document may be reproduced or transmitted in any form or by any means, electronic

More information

SQL Server in Azure. Marek Chmel. Microsoft MVP: Data Platform Microsoft MCSE: Data Management & Analytics Certified Ethical Hacker

SQL Server in Azure. Marek Chmel. Microsoft MVP: Data Platform Microsoft MCSE: Data Management & Analytics Certified Ethical Hacker SQL Server in Azure Marek Chmel Microsoft MVP: Data Platform Microsoft MCSE: Data Management & Analytics Certified Ethical Hacker Options to run SQL Server database Azure SQL Database Microsoft SQL Server

More information

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Maintaining a Microsoft SQL Server 2008 Database About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2008

More information

Course Outline: Designing, Optimizing, and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008

Course Outline: Designing, Optimizing, and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008 Course Outline: Designing, Optimizing, and Maintaining a Database Administrative Solution for Microsoft SQL Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40hrs Overview: This

More information

White Paper. How to select a cloud disaster recovery method that meets your requirements.

White Paper. How to select a cloud disaster recovery method that meets your requirements. How to select a cloud disaster recovery method that meets your requirements. VS Table of contents Table of contents Page 2 Executive Summary Page 3 Introduction Page 3 Disaster Recovery Methodologies Page

More information

RealTime. RealTime. Real risks. Data recovery now possible in minutes, not hours or days. A Vyant Technologies Product. Situation Analysis

RealTime. RealTime. Real risks. Data recovery now possible in minutes, not hours or days. A Vyant Technologies Product. Situation Analysis RealTime A Vyant Technologies Product Real risks Data recovery now possible in minutes, not hours or days RealTime Vyant Technologies: data recovery in minutes Situation Analysis It is no longer acceptable

More information

Corporate Profile. Solutions & Services

Corporate Profile. Solutions & Services Phone +65 6664 1000 Fax +65 6664 1009 URL www.eznetsols.com E-Mail info@eznetsols.com Corporate Profile Incorporated in 2003 as a Private Limited company in Singapore, eznetworking Solutions Pte. Ltd.

More information

2072 : Administering a Microsoft SQL Server 2000 Database

2072 : Administering a Microsoft SQL Server 2000 Database 2072 : Administering a Microsoft SQL Server 2000 Database Introduction This course provides students with the knowledge and skills required to install, configure, administer, and troubleshoot the client-server

More information

Exam Name: Midrange Storage Technical Support V2

Exam Name: Midrange Storage Technical Support V2 Vendor: IBM Exam Code: 000-118 Exam Name: Midrange Storage Technical Support V2 Version: 12.39 QUESTION 1 A customer has an IBM System Storage DS5000 and needs to add more disk drives to the unit. There

More information

DocuPhase Enterprise Configuration Guide

DocuPhase Enterprise Configuration Guide DocuPhase Enterprise Configuration Guide Version 6.1 DocuPhase Corporation 1499 Gulf to Bay Boulevard, Clearwater, FL 33755 Tel: (727) 441-8228 Fax: (727) 444-4419 Email: support@docuphase.com Web: www.docuphase.com

More information

Architecting a Hybrid Database Strategy with Microsoft SQL Server and the VMware Cloud Provider Program

Architecting a Hybrid Database Strategy with Microsoft SQL Server and the VMware Cloud Provider Program VMware vcloud Architecture Toolkit for Service Providers Architecting a Hybrid Database Strategy with Microsoft SQL Server and the VMware Cloud Provider Program Version 2.9 January 2018 Martin Hosken 2018

More information

Evaluating Hyperconverged Full Stack Solutions by, David Floyer

Evaluating Hyperconverged Full Stack Solutions by, David Floyer Evaluating Hyperconverged Full Stack Solutions by, David Floyer April 30th, 2018 Wikibon analysis and modeling is used to evaluate a Hyperconverged Full Stack approach compared to a traditional x86 White

More information

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved. Database Level 100 Rohit Rahi November 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information