Expert Reference Series of White Papers. Unlock the Power of Microsoft SQL Server 2012

Size: px
Start display at page:

Download "Expert Reference Series of White Papers. Unlock the Power of Microsoft SQL Server 2012"

Transcription

1 Expert Reference Series of White Papers Unlock the Power of Microsoft SQL Server COURSES

2 Unlock the Power of Microsoft SQL Server 2012 Brian D. Egler MCITP/MCSE/MCT 2012, Global Knowledge Course Director Introduction Are you ready to unlock the power of Microsoft SQL Server 2012? In this whitepaper we will examine three key new features that show how SQL Server 2012 provides enterprise-level high-availability, powerful self-service business analytics and ETL for data in the cloud. Three underlying themes categorize the SQL Server 2012 release: Mission-Critical Confidence Breakthrough Insight Cloud on your Terms Within this whitepaper, we will explore one selected new feature under each theme to give a feel for the capabilities of the new release. Other features, while too numerous to describe here, are documented on the Microsoft web site at You can also download an evaluation copy of the software from the same location. Mission-Critical Confidence Selected Feature: AlwaysOn for High Availability and Disaster Recovery In previous SQL Server releases, we had four options for high availability (HA), namely, Server Clustering, Database Mirroring, Log Shipping and Peer-to-Peer (P2P) Replication. Each solution has its pros and cons. Clustering and mirroring provide automatic failover. Log shipping and P2P provide load balancing. Log shipping provides the ability to create multiple read-only secondaries dispersed over great geographical distances for disaster recovery) sites. A common solution is to define a server cluster for HA combined with log shipping for DR, known as HADR. Database mirroring only allows one mirror, and it is not available until after a failover. Log shipping and replication do not support automatic failover. Replication also can require complex administration. SQL Server 2012 effectively combines the pros of each of these solutions with its AlwaysOn functionality. There are two flavors of AlwaysOn in SQL Server 2012: AlwaysOn Failover Cluster Instances (FCI) AlwaysOn Availability Groups (AG) Copyright 2013 Global Knowledge Training LLC. All rights reserved. 2

3 AlwaysOn FCI effectively is the SQL Server 2012 upgrade of server clustering for HA, using shared data storage. AlwaysOn FCI failover applies to a complete SQL Server instance, including all system and user databases on the instance. AlwaysOn AG has the automatic failover of mirroring at the database level but with the added ability to create multiple secondary replicas for read-only load balancing. An AG can contain multiple user databases that failover together without the need for shared storage. Some experts have described AlwaysOn AG as Database Mirroring++. Both AlwaysOn technologies can be combined to provide Automatic Failover and Load Balancing in one effective HADR solution. In order to setup an AlwaysOn AG, you can use the Availability Group Wizard within SQL Server Management Studio. This wizard will walk you through the steps to create an availability group. It should be noted that each SQL Server instance that hosts the AG must be on a separate node within a Windows Server Failover Cluster (WSFC) as the failover functionality uses the WSFC services. This is in contrast to Database Mirroring that uses a separate SQL Server instance as a witness for automatic failover. Availability Group Wizard The wizard guides you through the following steps: Specify an availability group name Select one or more user databases on this instance of SQL Server Specify one or more instances of SQL Server to host secondary availability replicas Specify your availability group listener preference Select your initial data synchronization preference Check the validation results of availability group creation Review your selections Figure 1. AlwaysOn Availability Group Wizard The user databases contained in the AlwaysOn AG must all use the Full Recovery Model as the synchronization of replicas is performed using the transaction log. Copyright 2013 Global Knowledge Training LLC. All rights reserved. 3

4 Specify one or more instances of SQL Server to host secondary availability replicas. Figure 2. AlwaysOn Primary and Secondary Replicas Within an AlwaysOn AG, you are allowed one primary replica and up to 4 secondary replicas giving a maximum total of 5 replicas. Each instance has its own local data storage for its replica databases. The primary replica is allowed to automatically failover to only one of the secondary replicas. These two replicas are called the Automatic Failover Partners. However, you may manually failover to any of the secondary replicas using the Failover Wizard. You can choose between Synchronous and Asynchronous Commit. Synchronous Commit performs a distributed transaction that commits across the network on both the primary and the secondary replicas simultaneously. This is required for the Automatic Failover Partners so no data is lost during a failover but is optional on the other secondary replicas to assist with better performance. All the secondary replicas can be used for load balancing being setup as a readable secondary for instance, for reporting or backup jobs. If the primary replica is configured for asynchronous-commit mode, it does not wait for any secondary replica to write incoming transaction log records to disk (to harden the log). The AlwaysOn AG, has a public Listener IP address and DNS name for use by the clients to access the current primary replica, regardless of failover. The secondary replicas can be accessed directly for read-only access if they are configured as a readable secondary. Read-intent only means the ReadOnly switch needs to be provided in the connection string by the application. If Readable Secondary is set to Yes, an ordinary connection string can be used to read the secondary replica. If Readable Secondary is set to No, no access will be granted when operating as a secondary replica. AlwaysOn Availability Group Dashboard The AlwaysOn Availability Group dashboard is provided within SQL Server Management Studio and shows status and health information in addition to the Failover Wizard for manual failover. Copyright 2013 Global Knowledge Training LLC. All rights reserved. 4

5 Figure 3. AlwaysOn Availability Group Dashboard in SSMS Breakthrough Insight Selected Feature: PowerView for Self-Service BI within SSRS 2012 and SharepPoint SQL Server Reporting Services (SSRS) 2005 introduced ReportBuilder, which was originally intended as an enduser tool to build reports within a web browser. ReportBuilder has since evolved into a web-based developer tool matching the functionality of the Visual Studio Report Designer. In SSRS 2012, Microsoft introduces Power- View, which delivers a true self-service reporting tool within the SharePoint PowerPivot Gallery, supporting dragand-drop authoring and animated delivery. PowerView is ideally placed as an effective end-user reporting tool. Copyright 2013 Global Knowledge Training LLC. All rights reserved. 5

6 Figure 4. PowerView within SharePoint PowerPivot Gallery The PowerPivot Gallery can be used within SharePoint to develop PowerPivot solutions for self-service business intelligence as well as PowerView reports. Both are user-friendly, supporting drag-and-drop and animated reports using a Silverlight plugin. Users can select between chart types, sorting, grouping, and filtering criteria using point-and-click. Resulting reports can be saved and then executed by other users as necessary directly from the PowerPivot Gallery. Animated Reports Using PowerView Play Axis Many different types of reports are provided by PowerView, but one of the most interesting features is the animated report supported by the SilverLight plugin within SharePoint. Complex reports needing multiple axes can be simplified by providing a Play axis, giving another dimension of analysis showing animated movement of the data over time. The example below (Figure 5) shows a bubble report of reseller profit over time. The vertical and horizontal axes show cost and revenue, the bubbles represent sub-categories of products, the size of the bubble showing profit size, and the animated movement shows the changes year over year by clicking the Play Axis button. This is a particularly effective way of portraying business trends over time. Copyright 2013 Global Knowledge Training LLC. All rights reserved. 6

7 Figure 5. PowerView animated reports PowerView requires SQL Server 2012 Reporting Services running in SharePoint Integrated Mode. Cloud on Your Terms Selected Feature: SSIS 2012 for ETL processing with Cloud-based data Cloud-based data provides increased flexibility and elastic scalability, ideal for rapidly growing organizations. There are still many unanswered security-based questions, but some databases may be appropriate to host in the cloud and synchronize with sensitive on-premises databases. This distributed approach to our data is a growing trend in the industry. Microsoft is at the forefront of this technology with its Windows Azure platform, supporting SQL Azure for databases in the cloud. Once again, ease of use and lower costs are Microsoft s value propositions. SQL Azure is synchronized with SQL Server 2012 functionality. Copyright 2013 Global Knowledge Training LLC. All rights reserved. 7

8 Figure 6. SQL Azure on the Windows Azure platform in the Cloud Windows Azure and SQL Azure can be accessed directly using A 90-day free trial is available. After that, a there is a monthly fee, based on storage requirements. You can create and populate SQL Server databases using the web interface (Figure 6) or using SQL Server Management Studio remotely, accessing the database server using the fully qualified DNS name (FQDN) provided by the Windows Azure platform. SSIS packages can also extract information from SQL Azure databases using the same FQDN in the Connection Manager properties (shown in Figure 7). SQL Azure databases must use SQL Server authentication but can be accessed using any of the SSIS Tasks provided in the SSIS Toolbox. In this way, accessing data in the cloud is essentially the same as any other data source. Copyright 2013 Global Knowledge Training LLC. All rights reserved. 8

9 Figure 7. SSIS shared Connection Manager for SQL Azure Figure 8. DataSync feature for SQL Azure The Data Sync feature also allows bi-directional data synchronization across the cloud, supporting synchronization of disparate data sources across the enterprise: In this way, the cloud can be used as another potential data source for extracting, transforming, and loading of data into a Data Warehouse. Copyright 2013 Global Knowledge Training LLC. All rights reserved. 9

10 Conclusion Microsoft SQL Server 2012 has many great new features that allow you to develop higher performing, more scalable, next-generation applications using more than just relational data. The fact that the features are largely incremental in nature should reassure users that Microsoft is building on the established foundation of SQL Server 2008 R2. Using the same architecture and management tools, customers will be able to smoothly upgrade their systems and skills, based on the need for the new features and according to their own schedule. Learn More To learn more about how you can improve productivity, enhance efficiency, and sharpen your competitive edge, Global Knowledge suggests the following courses: Updating your Database and Business Intelligence Skills to Microsoft SQL Server 2012 (M40008, M40009) Implementing a Data Warehouse with Microsoft SQL Server 2012 (M10777) Implementing Data Models and Reports with Microsoft SQL Server 2012 (M10778) MCSA: SQL Server 2012 Boot Camp: 9 day class (NEW) This course is composed of: Three official Microsoft courses: - Querying Microsoft SQL Server 2012 (M10774) - Administering Microsoft SQL Server 2012 Databases (M10775) - Implementing a Data Warehouse with Microsoft SQL Server 2012 (M10777) Training Kits, Reference Books, Practice Tests Intense immersion training including all 50+ labs for 6 months Exam Vouchers for future use Physical or Virtual Classroom Visit or call COURSES ( ) to speak with a Global Knowledge training advisor. About the Author Brian Egler is a Global Knowledge instructor and Course Director, specializing in Microsoft SQL Server technologies. He currently resides in Holly Springs, North Carolina. Copyright 2013 Global Knowledge Training LLC. All rights reserved. 10

Microsoft SQL Server 2012: What to Expect

Microsoft SQL Server 2012: What to Expect ASPE RESOURCE SERIES Microsoft SQL Server 2012: What to Expect Prepared for ASPE by Global Knowledge's Brian D. Egler MCITP-DBA, MCT, Real Skills. Real Results. Real IT. in partnership with Microsoft SQL

More information

SQL Server AlwaysOn (HADRON)

SQL Server AlwaysOn (HADRON) SQL Server AlwaysOn (HADRON) 朱 桦 Technical Leader, Microsoft Database Support Team Microsoft Public - See Terms of Use 2 Windows Server Failover Clustering (WSFC) Shared Data Disk Multi-node w/shared Data

More information

Expert Reference Series of White Papers. Are You Ready For Microsoft SQL Server 2016?

Expert Reference Series of White Papers. Are You Ready For Microsoft SQL Server 2016? Expert Reference Series of White Papers Are You Ready For Microsoft SQL Server 2016? info@globalknowledge.net www.globalknowledge.net Planning for the Redeployment of Technical Personnel in the Modern

More information

SQL Server 2012/2014 AlwaysOn Availability Group

SQL Server 2012/2014 AlwaysOn Availability Group SQL Server 2012/2014 AlwaysOn Availability Group Part 1 - Introduction v1.0-2014 - G.MONVILLE Summary SQL Server 2012 AlwaysOn - Introduction... 2 AlwaysOn Features... 2 AlwaysOn FCI (Failover Cluster

More information

SQL Server 2012 Business Intelligence Boot Camp

SQL Server 2012 Business Intelligence Boot Camp SQL Server 2012 Business Intelligence Boot Camp Length: 5 Days Technology: Microsoft SQL Server 2012 Delivery Method: Instructor-led (classroom) About this Course Data warehousing is a solution organizations

More information

Updating Your SQL Server Skills to Microsoft SQL Server 2014

Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course 10977B: Updating Your SQL Server Skills to Microsoft SQL Server 2014 Page 1 of 8 Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course 10977B: 4 days; Instructor-Led Introduction This

More information

Updating Your SQL Server Skills from Microsoft SQL Server 2008 to Microsoft SQL Server 2014

Updating Your SQL Server Skills from Microsoft SQL Server 2008 to Microsoft SQL Server 2014 Course Code: M10977 Vendor: Microsoft Course Overview Duration: 5 RRP: 2,025 Updating Your SQL Server Skills from Microsoft SQL Server 2008 to Microsoft SQL Server 2014 Overview This five-day instructor-led

More information

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 va

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 va Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 va Day(s): 5 Course Code: M10977 Version: A Overview This five-day instructor-led course teaches students how to use the enhancements and new

More information

Designing a Data Solution with Microsoft SQL Server 2014

Designing a Data Solution with Microsoft SQL Server 2014 20465C - Version: 1 22 June 2016 Designing a Data Solution with Microsoft SQL Server 2014 Designing a Data Solution with Microsoft SQL Server 2014 20465C - Version: 1 5 days Course Description: The focus

More information

Cass Walker TLG Learning

Cass Walker TLG Learning Cass Walker TLG Learning Query Window Zoom Query Window Outlining T-SQL Language Enhancements Integration Services Catalogs Default Location for Backup Files MS Help Viewer FileTable AlwaysOn PowerPivot

More information

Appendix A Core Concepts in SQL Server High Availability and Replication

Appendix A Core Concepts in SQL Server High Availability and Replication Appendix A Core Concepts in SQL Server High Availability and Replication Appendix Overview Core Concepts in High Availability Core Concepts in Replication 1 Lesson 1: Core Concepts in High Availability

More information

10977B: Updating Your SQL Server Skills to Microsoft SQL Server 2014

10977B: Updating Your SQL Server Skills to Microsoft SQL Server 2014 10977B: Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course Details Course Code: Duration: Notes: 10977B 5 days This course syllabus should be used to determine whether the course is appropriate

More information

Updating Your SQL Server Skills to Microsoft SQL Server 2014

Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course 10977A: Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course Details Course Outline Module 1: Introduction to SQL Server 2014 This module introduces key features of SQL Server 2014.

More information

Course 10977A: Updating Your SQL Server Skills to Microsoft SQL Server 2014

Course 10977A: Updating Your SQL Server Skills to Microsoft SQL Server 2014 www.etidaho.com (208) 327-0768 Course 10977A: Updating Your SQL Server Skills to Microsoft SQL Server 2014 5 Days About this Course This five day instructor led course teaches students how to use the enhancements

More information

Deploy App Orchestration 2.6 for High Availability and Disaster Recovery

Deploy App Orchestration 2.6 for High Availability and Disaster Recovery Deploy App Orchestration 2.6 for High Availability and Disaster Recovery Qiang Xu, Cloud Services Nanjing Team Last Updated: Mar 24, 2015 Contents Introduction... 2 Process Overview... 3 Before you begin...

More information

Course 10977: Updating Your SQL Server Skills to Microsoft SQL Server 2014

Course 10977: Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course 10977: Updating Your SQL Server Skills to Microsoft SQL Server 2014 Type:Course Audience(s):IT Professionals Technology:Microsoft SQL Server Level:300 This Revision:B Delivery method: Instructor-led

More information

Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud

Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud Implementing Microsoft Windows Server Failover Clustering (WSFC) and SQL Server 2012 AlwaysOn Availability Groups in the AWS Cloud David Pae, Ulf Schoo June 2013 (Please consult http://aws.amazon.com/windows/

More information

LEARNING SOLUTIONS website milner.com/learning email training@milner.com phone 800 875 5042

LEARNING SOLUTIONS website milner.com/learning email training@milner.com phone 800 875 5042 Course 20467A: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Length: 5 Days Published: December 21, 2012 Language(s): English Audience(s): IT Professionals Overview Level: 300

More information

MS 10977B Upgrading Your SQL Server Skills to Microsoft SQL Server 2014

MS 10977B Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 MS 10977B Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 Description: Days: 5 Prerequisites: This five-day instructor-led course teaches students how to use the enhancements and new features

More information

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 10977 Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 Length: 5 Days Audience: IT

More information

Updating Your SQL Server Skills to Microsoft SQL Server 2014 (10977) H8B96S

Updating Your SQL Server Skills to Microsoft SQL Server 2014 (10977) H8B96S HP Education Services course data sheet Updating Your SQL Server Skills to Microsoft SQL Server 2014 (10977) H8B96S Course Overview In this course, you will learn how to use SQL Server 2014 product features

More information

MS 20465C: Designing a Data Solution with Microsoft SQL Server

MS 20465C: Designing a Data Solution with Microsoft SQL Server MS 20465C: Designing a Data Solution with Microsoft SQL Server Description: Note: Days: 5 Prerequisites: The focus of this five-day instructor-led course is on planning and implementing enterprise database

More information

40009A - UPDATING YOUR BUSINESS INTELLIGENCE SKILLS TO MICROSOFT SQL SERVER 2012 Training Course Outline. Course: 40009A

40009A - UPDATING YOUR BUSINESS INTELLIGENCE SKILLS TO MICROSOFT SQL SERVER 2012 Training Course Outline. Course: 40009A Course: 40009A Updating your Business Intelligence Skills to Microsoft SQL Server 2012 Course Outline This three-day instructor-led course provides existing SQL Server Business Intelligence (BI) professionals

More information

Building a BI Solution in the Cloud

Building a BI Solution in the Cloud Building a BI Solution in the Cloud Stacia Varga, Principal Consultant Email: stacia@datainspirations.com Twitter: @_StaciaV_ 2 SQLSaturday #467 Sponsors Stacia (Misner) Varga Over 30 years of IT experience,

More information

MS 20467: Designing Business Intelligence Solutions with Microsoft SQL Server 2012

MS 20467: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 MS 20467: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Description: This five-day instructor-led course teaches students how to design and implement a BI infrastructure. The

More information

Course 20465C: Designing a Data Solution with Microsoft SQL Server

Course 20465C: Designing a Data Solution with Microsoft SQL Server Course 20465C: Designing a Data Solution with Microsoft SQL Server Module 1: Introduction to Enterprise Data Architecture As organizations grow to enterprise scale, their IT infrastructure requirements

More information

Designing a Data Solution with Microsoft SQL Server 2014

Designing a Data Solution with Microsoft SQL Server 2014 Page 1 of 8 Overview The focus of this five-day instructor-led course is on planning and implementing enterprise database infrastructure solutions by using SQL Server 2014 and other Microsoft technologies.

More information

Course Outline: Course: Implementing a Data Warehouse with Microsoft SQL Server 2012 Learning Method: Instructor-led Classroom Learning

Course Outline: Course: Implementing a Data Warehouse with Microsoft SQL Server 2012 Learning Method: Instructor-led Classroom Learning Course Outline: Course: Implementing a Data with Microsoft SQL Server 2012 Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: This 5-day instructor-led course describes

More information

Designing a Data Solution with Microsoft SQL Server

Designing a Data Solution with Microsoft SQL Server The focus of this five-day instructor-led course is on planning and implementing enterprise database infrastructure solutions by using SQL Server 2014 and other Microsoft technologies. It describes how

More information

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 Varighed: 5 Days Kursus Kode: M10977 Beskrivelse: This five-day instructor-led course teaches students how to use the enhancements and new

More information

MS_40009 Updating your Business Intelligence Skills to Microsoft SQL Server 2012

MS_40009 Updating your Business Intelligence Skills to Microsoft SQL Server 2012 Updating your Business Intelligence Skills to Microsoft SQL Server 2012 www.ked.com.mx Av. Revolución No. 374 Col. San Pedro de los Pinos, C.P. 03800, México, D.F. Tel/Fax: 52785560 About this Course This

More information

Course 20465: Designing a Data Solution with Microsoft SQL Server

Course 20465: Designing a Data Solution with Microsoft SQL Server Course 20465: Designing a Data Solution with Microsoft SQL Server Overview About this course The focus of this five-day instructor-led course is on planning and implementing enterprise database infrastructure

More information

Designing a Data Solution with Microsoft SQL Server

Designing a Data Solution with Microsoft SQL Server Course 20465C: Designing a Data Solution with Microsoft SQL Server Page 1 of 6 Designing a Data Solution with Microsoft SQL Server Course 20465C: 4 days; Instructor-Led Introduction The focus of this four-day

More information

GoGrid Implement.com Configuring a SQL Server 2012 AlwaysOn Cluster

GoGrid Implement.com Configuring a SQL Server 2012 AlwaysOn Cluster GoGrid Implement.com Configuring a SQL Server 2012 AlwaysOn Cluster Overview This documents the SQL Server 2012 Disaster Recovery design and deployment, calling out best practices and concerns from the

More information

Extending Your Availability Group for Disaster Recovery

Extending Your Availability Group for Disaster Recovery Extending Your Availability Group for Disaster Recovery Ed Leighton-Dick Kingfisher Technologies About Me Email: ed@leightondick.com Blog: edleightondick.com Twitter: @eleightondick 1 Agenda Availability

More information

TABLE OF CONTENTS THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY FOR SHAREPOINT DATA. Introduction. Examining Third-Party Replication Models

TABLE OF CONTENTS THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY FOR SHAREPOINT DATA. Introduction. Examining Third-Party Replication Models 1 THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY TABLE OF CONTENTS 3 Introduction 14 Examining Third-Party Replication Models 4 Understanding Sharepoint High Availability Challenges With Sharepoint

More information

Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Course 20467A; 5 Days

Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Course 20467A; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Designing Business Intelligence Solutions with Microsoft SQL Server 2012

More information

Microsoft SQL Server Native High Availability with XtremIO

Microsoft SQL Server Native High Availability with XtremIO Microsoft SQL Server Native High Availability with XtremIO Extending Microsoft SQL Server Functionality with the EMC XtremIO Storage Array ABSTRACT This whitepaper examines the storage efficiency and performance

More information

Tagetik Extends Customer Value with SQL Server 2012

Tagetik Extends Customer Value with SQL Server 2012 Tagetik Extends Customer Value with SQL Server 2012 Author: Dave Kasabian Contributors: Marco Pierallini, Luca Pieretti Published: February 2012 Summary: As the 2011 Microsoft ISV Line of Business partner

More information

SQL Server AlwaysOn. Michal Tinthofer 11. Praha 2013. What to avoid and how to optimize, deploy and operate. Michal.Tinthofer@Woodler.

SQL Server AlwaysOn. Michal Tinthofer 11. Praha 2013. What to avoid and how to optimize, deploy and operate. Michal.Tinthofer@Woodler. SQL Server AlwaysOn What to avoid and how to optimize, deploy and operate. 11. ročník největší odborné IT konference v ČR! Michal Tinthofer Michal.Tinthofer@Woodler.eu Praha 2013 Overview Introduction

More information

Course 40009A: Updating your Business Intelligence Skills to Microsoft SQL Server 2012

Course 40009A: Updating your Business Intelligence Skills to Microsoft SQL Server 2012 3 Riverchase Office Plaza Hoover, Alabama 35244 Phone: 205.989.4944 Fax: 855.317.2187 E-Mail: rwhitney@discoveritt.com Web: www.discoveritt.com Course 40009A: Updating your Business Intelligence Skills

More information

20465C: Designing a Data Solution with Microsoft SQL Server

20465C: Designing a Data Solution with Microsoft SQL Server 20465C: Designing a Data Solution with Microsoft SQL Server Course Details Course Code: Duration: Notes: 20465C 5 days This course syllabus should be used to determine whether the course is appropriate

More information

SQL Server for Database Administrators Course Syllabus

SQL Server for Database Administrators Course Syllabus SQL Server for Database Administrators Course Syllabus 1. Description This course teaches the administration and maintenance aspects of Microsoft SQL Server. It covers all the roles performed by administrative

More information

MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008

MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008 MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008 Table of Contents Introduction Audience At Completion Prerequisites Microsoft Certified Professional Exams Student Materials

More information

20465: Designing a Data Solution with Microsoft SQL Server

20465: Designing a Data Solution with Microsoft SQL Server 20465: Designing a Data Solution with Microsoft SQL Server Microsoft - Base de Dados Nível: Avançado Duração: 30h Sobre o curso The focus of this five-day instructor-led course is on planning and implementing

More information

Microsoft Windows Server Failover Clustering (WSFC) and SQL Server AlwaysOn Availability Groups on the AWS Cloud: Quick Start Reference Deployment

Microsoft Windows Server Failover Clustering (WSFC) and SQL Server AlwaysOn Availability Groups on the AWS Cloud: Quick Start Reference Deployment Microsoft Windows Server Failover Clustering (WSFC) and SQL Server AlwaysOn Availability Groups on the AWS Cloud: Quick Start Reference Deployment Mike Pfeiffer July 2014 Last updated: September 2015 (revisions)

More information

Course 20465C: Designing a Data Solution with Microsoft SQL Server

Course 20465C: Designing a Data Solution with Microsoft SQL Server Course 20465C: Designing a Data Solution with Microsoft SQL Server Five days, instructor-led About this Course The focus of this five-day instructor-led course is on planning and implementing enterprise

More information

SQL Server 2016 New Features!

SQL Server 2016 New Features! SQL Server 2016 New Features! Improvements on Always On Availability Groups: Standard Edition will come with AGs support with one db per group synchronous or asynchronous, not readable (HA/DR only). Improved

More information

Advanced HA and DR. Ido@Valinor.co.il

Advanced HA and DR. Ido@Valinor.co.il Advanced HA and DR מי אני? עידו פרידמן יועץ ומדריך SQL Server בחברת מוביל טכנולוגי של תחום SQL ואלינור Ido@Valinor.co.il 1 ואלינור החברה המובילה בישראל במתן שירותים מקצועיים בתחום בסיסי נתונים צוות יועצים

More information

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

Designing, Optimizing and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008 Course 50400A: Designing, Optimizing and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008 Length: 5 Days Language(s): English Audience(s): IT Professionals Level: 300 Technology:

More information

Dell High Availability and Disaster Recovery Solutions Using Microsoft SQL Server 2012 AlwaysOn Availability Groups

Dell High Availability and Disaster Recovery Solutions Using Microsoft SQL Server 2012 AlwaysOn Availability Groups Dell High Availability and Disaster Recovery Solutions Using Microsoft SQL Server 2012 AlwaysOn Availability Groups Dell servers and storage options available for AlwaysOn Availability Groups deployment.

More information

This course is intended for database professionals who need who plan, implement, and manage database solutions. Primary responsibilities include:

This course is intended for database professionals who need who plan, implement, and manage database solutions. Primary responsibilities include: Course Page - Page 1 of 5 Designing Solutions for Microsoft SQL Server 2014 M-20465 Length: 3 days Price: $1,795.00 Course Description The focus of this three-day instructor-led course is on planning and

More information

SQL Server Mirroring. Introduction. Setting up the databases for Mirroring

SQL Server Mirroring. Introduction. Setting up the databases for Mirroring SQL Server Mirroring The purpose of this document is to describe in detail the process of configuring Secret Server and SQL Server 2008 for a high-availability environment using Mirroring. The contents

More information

SQL Server 2014. What s New? Christopher Speer. Technology Solution Specialist (SQL Server, BizTalk Server, Power BI, Azure) v-cspeer@microsoft.

SQL Server 2014. What s New? Christopher Speer. Technology Solution Specialist (SQL Server, BizTalk Server, Power BI, Azure) v-cspeer@microsoft. SQL Server 2014 What s New? Christopher Speer Technology Solution Specialist (SQL Server, BizTalk Server, Power BI, Azure) v-cspeer@microsoft.com The evolution of the Microsoft data platform What s New

More information

Module 14: Scalability and High Availability

Module 14: Scalability and High Availability Module 14: Scalability and High Availability Overview Key high availability features available in Oracle and SQL Server Key scalability features available in Oracle and SQL Server High Availability High

More information

SQL Server AlwaysOn Deep Dive for SharePoint Administrators

SQL Server AlwaysOn Deep Dive for SharePoint Administrators SQL Server AlwaysOn Deep Dive for SharePoint Administrators SharePoint Saturday Montréal Edwin Sarmiento 23 mai 2015 SQL Server AlwaysOn Deep Dive for SharePoint Administrators Edwin Sarmiento Microsoft

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777

Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777 Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777 Course Outline Module 1: Introduction to Data Warehousing This module provides an introduction to the key components of a data warehousing

More information

Microsoft SQL Server 2012 Administration

Microsoft SQL Server 2012 Administration PROFESSION Microsoft SQL Server 2012 Administration Adam Jorgensen Steven Wort Ross LoForte Brian Knight WILEY John Wiley & Sons, Inc. INTRODUCTION xxxvii CHAPTER 1: SQL SERVER 2012 ARCHITECTURE 1 SQL

More information

Implementing Data Models and Reports with Microsoft SQL Server 2012 MOC 10778

Implementing Data Models and Reports with Microsoft SQL Server 2012 MOC 10778 Implementing Data Models and Reports with Microsoft SQL Server 2012 MOC 10778 Course Outline Module 1: Introduction to Business Intelligence and Data Modeling This module provides an introduction to Business

More information

Mission-Critical Availability

Mission-Critical Availability Mission-Critical Availability Detect failures reliably Able to stand multiple failures Unified solution Easy to configure, manage, and monitor Reuse existing investments SAN/DAS environments Allow using

More information

Updating Your Skills to SQL Server 2016

Updating Your Skills to SQL Server 2016 Updating Your Skills to SQL Server 2016 Course 10986A 3 Days Instructor-led, Hands on Course Information This three-day instructor-led course provides students moving from earlier releases of SQL Server

More information

ScaleArc for SQL Server

ScaleArc for SQL Server Solution Brief ScaleArc for SQL Server Overview Organizations around the world depend on SQL Server for their revenuegenerating, customer-facing applications, running their most business-critical operations

More information

40008A - UPDATING YOUR DATABASE SKILLS TO MICROSOFT SQL SERVER 2012 Training Course Outline. Course: 40008A

40008A - UPDATING YOUR DATABASE SKILLS TO MICROSOFT SQL SERVER 2012 Training Course Outline. Course: 40008A Course: 40008A Updating your database skills to Microsoft SQL Server 2012 Course Outline This three-day instructor-led course provides existing SQL Server database professionals with the knowledge and

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012

Implementing a Data Warehouse with Microsoft SQL Server 2012 Implementing a Data Warehouse with Microsoft SQL Server 2012 Module 1: Introduction to Data Warehousing Describe data warehouse concepts and architecture considerations Considerations for a Data Warehouse

More information

Microsoft SQL Server Installation Guide

Microsoft SQL Server Installation Guide Microsoft SQL Server Installation Guide Version 3.0 For SQL Server 2014 Developer & 2012 Express October 2014 Copyright 2010 2014 Robert Schudy, Warren Mansur and Jack Polnar Permission granted for any

More information

$99.95 per user. SQL Server 2008/R2 Database Administration CourseId: 157 Skill level: 200-500 Run Time: 47+ hours (272 videos)

$99.95 per user. SQL Server 2008/R2 Database Administration CourseId: 157 Skill level: 200-500 Run Time: 47+ hours (272 videos) Course Description This course is a soup-to-nuts course that will teach you everything you need to configure a server, maintain a SQL Server disaster recovery plan, and how to design and manage a secure

More information

BI on Cloud using SQL Server on IaaS

BI on Cloud using SQL Server on IaaS BI on Cloud using SQL Server on IaaS Abstract Today s Business Intelligence (BI) Systems are analysing huge volumes of data, which is growing at a rapid pace requiring organizations to scale the hardware/infrastructure

More information

Designing a Data Solution with Microsoft SQL Server

Designing a Data Solution with Microsoft SQL Server Course Code: M20465C Vendor: Microsoft Course Overview Duration: 5 RRP: 2,025 Designing a Data Solution with Microsoft SQL Server Overview The focus of this five-day instructor-led course is on planning

More information

SQL AlwaysOn Availability Groups (AAG) on Tintri

SQL AlwaysOn Availability Groups (AAG) on Tintri TECHNICAL WHITE PAPER SQL AlwaysOn Availability Groups (AAG) on Tintri Best Practices Guide V1.0 Rev Oct 2014 www.tintri.com Contents Intended Audience... 4 Executive Summary... 4 Assumptions... 4 Microsoft

More information

Implementing Microsoft Azure Infrastructure Solutions

Implementing Microsoft Azure Infrastructure Solutions Course Code: M20533 Vendor: Microsoft Course Overview Duration: 5 RRP: 2,025 Implementing Microsoft Azure Infrastructure Solutions Overview This course is aimed at experienced IT Professionals who currently

More information

10231B: Designing a Microsoft SharePoint 2010 Infrastructure

10231B: Designing a Microsoft SharePoint 2010 Infrastructure 10231B: Designing a Microsoft SharePoint 2010 Infrastructure Course Number: 10231B Course Length: 5 Days Course Overview This 5 day course teaches IT Professionals to design and deploy Microsoft SharePoint

More information

Microsoft SQL Server Installation Guide

Microsoft SQL Server Installation Guide Microsoft SQL Server Installation Guide Version 2.1 For SQL Server 2012 January 2013 Copyright 2010 2013 Robert Schudy, Warren Mansur and Jack Polnar Permission granted for any use of Boston University

More information

WELKOM Cloud met Azure

WELKOM Cloud met Azure WELKOM Cloud met Azure Inspiratiedag zonder praatjes Cloud met Azure Inspiratiedag zonder praatjes Brecht Vuylsteke Microsoft System Engineer RealDolmen SQL Hybrid on Azure Agenda Introduction Disaster

More information

ABSTRACT. February, 2014 EMC WHITE PAPER

ABSTRACT. February, 2014 EMC WHITE PAPER EMC APPSYNC SOLUTION FOR MANAGING PROTECTION OF MICROSOFT SQL SERVER SLA-DRIVEN, SELF-SERVICE CAPABILITIES FOR MAXIMIZING AND SIMPLIFYING DATA PROTECTION AND RECOVERABILITY ABSTRACT With Microsoft SQL

More information

Course 20533: Implementing Microsoft Azure Infrastructure Solutions

Course 20533: Implementing Microsoft Azure Infrastructure Solutions Course 20533: Implementing Microsoft Azure Infrastructure Solutions Overview About this course This course is aimed at experienced IT Professionals who currently administer their on-premises infrastructure.

More information

MS-55115: Planning, Deploying and Managing Microsoft Project Server 2013

MS-55115: Planning, Deploying and Managing Microsoft Project Server 2013 MS-55115: Planning, Deploying and Managing Microsoft Project Server 2013 Description The goal of this three-day instructor-led course is to provide students with the knowledge and skills necessary to effectively

More information

The Microsoft Business Intelligence 2010 Stack Course 50511A; 5 Days, Instructor-led

The Microsoft Business Intelligence 2010 Stack Course 50511A; 5 Days, Instructor-led The Microsoft Business Intelligence 2010 Stack Course 50511A; 5 Days, Instructor-led Course Description This instructor-led course provides students with the knowledge and skills to develop Microsoft End-to-

More information

20465D: Designing Solutions for Microsoft SQL Server 2014

20465D: Designing Solutions for Microsoft SQL Server 2014 20465D: Designing Solutions for Microsoft SQL Server 2014 Course Details Course Code: Duration: Notes: 20465D 3 days This course syllabus should be used to determine whether the course is appropriate for

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012 (70-463)

Implementing a Data Warehouse with Microsoft SQL Server 2012 (70-463) Implementing a Data Warehouse with Microsoft SQL Server 2012 (70-463) Course Description Data warehousing is a solution organizations use to centralize business data for reporting and analysis. This five-day

More information

Getting Started with Master Data Services

Getting Started with Master Data Services ASPE RESOURCE SERIES Getting Started with Master Data Services Prepared for ASPE by Global Knowledge's Brian D. Egler MCITP, MCT 2010 Real Skills. Real Results. Real IT. in partnership with Getting Started

More information

Microsoft SharePoint 2010 on VMware Availability and Recovery Options. Microsoft SharePoint 2010 on VMware Availability and Recovery Options

Microsoft SharePoint 2010 on VMware Availability and Recovery Options. Microsoft SharePoint 2010 on VMware Availability and Recovery Options This product is protected by U.S. and international copyright and intellectual property laws. This product is covered by one or more patents listed at http://www.vmware.com/download/patents.html. VMware

More information

10775A Administering Microsoft SQL Server 2012 Databases

10775A Administering Microsoft SQL Server 2012 Databases 10775A Administering Microsoft SQL Server 2012 Databases Five days, instructor-led About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft

More information

End to End Microsoft BI with SQL 2008 R2 and SharePoint 2010

End to End Microsoft BI with SQL 2008 R2 and SharePoint 2010 www.etidaho.com (208) 327-0768 End to End Microsoft BI with SQL 2008 R2 and SharePoint 2010 5 Days About This Course This instructor-led course provides students with the knowledge and skills to develop

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012

Implementing a Data Warehouse with Microsoft SQL Server 2012 Course 10777A: Implementing a Data Warehouse with Microsoft SQL Server 2012 Length: Audience(s): 5 Days Level: 200 IT Professionals Technology: Microsoft SQL Server 2012 Type: Delivery Method: Course Instructor-led

More information

How To Extend An Enterprise Bio Solution

How To Extend An Enterprise Bio Solution Course 20467C: Designing Self-Service Business Intelligence and Big Data Solutions Module 1: Introduction to Self-Service Business Intelligence This module introduces self-service BI. Extending Enterprise

More information

This three-day instructor-led course provides existing SQL Server database professionals with the knowledge

This three-day instructor-led course provides existing SQL Server database professionals with the knowledge Course 40008A: Updating your Database Skills to Microsoft SQL Server 2012 OVERVIEW About this Course This three-day instructor-led course provides existing SQL Server database professionals with the knowledge

More information

Updating your Database skills to Microsoft SQL Server 2012

Updating your Database skills to Microsoft SQL Server 2012 Page 1 of 5 Overview Who should attend? This three-day instructor-led course provides existing SQL Server database professionals with the knowledge and skills to use new and enhanced capabilities in SQL.

More information

Below are the some of the new features of SQL Server that has been discussed in this course

Below are the some of the new features of SQL Server that has been discussed in this course Course 10775A: Administering Microsoft SQL Server 2012 Databases OVERVIEW About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL

More information

Administering Microsoft SQL Server 2012 Databases

Administering Microsoft SQL Server 2012 Databases Administering Microsoft SQL Server 2012 Databases MOC 10775 About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2012

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012

Implementing a Data Warehouse with Microsoft SQL Server 2012 Course 10777 : Implementing a Data Warehouse with Microsoft SQL Server 2012 Page 1 of 8 Implementing a Data Warehouse with Microsoft SQL Server 2012 Course 10777: 4 days; Instructor-Led Introduction Data

More information

Microsoft Business Intelligence 2012 Single Server Install Guide

Microsoft Business Intelligence 2012 Single Server Install Guide Microsoft Business Intelligence 2012 Single Server Install Guide Howard Morgenstern Business Intelligence Expert Microsoft Canada 1 Table of Contents Microsoft Business Intelligence 2012 Single Server

More information

Course Outline. Module 1: Introduction to Data Warehousing

Course Outline. Module 1: Introduction to Data Warehousing Course Outline Module 1: Introduction to Data Warehousing This module provides an introduction to the key components of a data warehousing solution and the highlevel considerations you must take into account

More information

Course MS20467C Designing Self-Service Business Intelligence and Big Data Solutions

Course MS20467C Designing Self-Service Business Intelligence and Big Data Solutions 3 Riverchase Office Plaza Hoover, Alabama 35244 Phone: 205.989.4944 Fax: 855.317.2187 E-Mail: rwhitney@discoveritt.com Web: www.discoveritt.com Course MS20467C Designing Self-Service Business Intelligence

More information

Installing and Configuring a. SQL Server 2012 Failover Cluster

Installing and Configuring a. SQL Server 2012 Failover Cluster Installing and Configuring a SQL Server 2012 Failover Cluster Edwin M Sarmiento Applies to: SQL Server 2012 SQL Server 2014 P a g e 1 Copyright This document is provided as-is. Information and views expressed

More information

Database Mirroring: High Availability (HA) and Disaster Recovery (DR) Technology

Database Mirroring: High Availability (HA) and Disaster Recovery (DR) Technology Written by Zakir Hossain, CS Graduate (OSU) CEO, Data Group Fed Certifications: PFA (Programming Foreign Assistance), COR (Contracting Officer), AOR (Assistance Officer) Oracle Certifications: OCP (Oracle

More information

CREATING SQL SERVER DISASTER RECOVERY SOLUTIONS WITH SIOS DATAKEEPER

CREATING SQL SERVER DISASTER RECOVERY SOLUTIONS WITH SIOS DATAKEEPER CREATING SQL SERVER DISASTER RECOVERY SOLUTIONS WITH SIOS DATAKEEPER Learn how DataKeeper Cluster Edition can be used to create disaster recovery solutions for SQL Server deployments. By Allan Hirt, SQLHA

More information

Microsoft SQL Database Administrator Certification

Microsoft SQL Database Administrator Certification Microsoft SQL Database Administrator Certification Training for Exam 70-432 Course Modules and Objectives www.sqlsteps.com 2009 ViSteps Pty Ltd, SQLSteps Division 2 Table of Contents Module #1 Prerequisites

More information

Haute Disponibilité et Reprise sur Incidents en SharePoint 2013 avec SQL Server Always On Availability Groups

Haute Disponibilité et Reprise sur Incidents en SharePoint 2013 avec SQL Server Always On Availability Groups Haute Disponibilité et Reprise sur Incidents en SharePoint 2013 avec SQL Server Always On Availability Groups #SPSParis E04 Serge Luca & Isabelle Van Campenhoudt 30 Mai 2015 / May 30 th, 2015 Organizers

More information

BIG DATA TRENDS AND TECHNOLOGIES

BIG DATA TRENDS AND TECHNOLOGIES BIG DATA TRENDS AND TECHNOLOGIES THE WORLD OF DATA IS CHANGING Cloud WHAT IS BIG DATA? Big data are datasets that grow so large that they become awkward to work with using onhand database management tools.

More information

Course 55115: Planning, Deploying and Managing Microsoft Project Server 2013

Course 55115: Planning, Deploying and Managing Microsoft Project Server 2013 CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 55115: Planning, Deploying and Managing Microsoft Project Server 2013 Length: 3 Days Audience:

More information