Tomasz Libera. Azure SQL Data Warehouse

Size: px
Start display at page:

Download "Tomasz Libera. Azure SQL Data Warehouse"

Transcription

1 Tomasz Libera Azure SQL Data Warehouse

2 Thanks to our partners!

3 About me Microsoft MVP Data Platform Microsoft Certified Trainer SQL Server Developer Academic Trainer datacommunity.org.pl One of the leaders of the Data Community Poland Organizer of conferences: SQLDay, SQLSaturday Interests Mountain biking MTB marathons blog.libera.net.pl

4 Agenda Introduction MPP DWU DISTRIBUTIONS Gen2 Creating tables and differences in TSQL CTAS DISTRIBUTION METHODS INDEXES STATS Monitor and tune JOIN QUERY PERFORMANCE Data Loading BCP AZCOPY POLYBASE SSIS

5 Introduction

6 MPP Architecture MPP - Massively parallel processing PDW - Parallel Data Warehouse -> APS - Analytics Platform System Main control node + 60 x compute nodes Distributed queries all queries are distributed across nodes Data Movement Service internal service that moves data across the nodes as necessary to run queries in parallel and return accurate results TSQL tables, views, stored procedures, temporary tables, variables Columnstore architecture default index type for all tables Microsoft Polybase enables to query data from Hadoop and Blob Storage using TSQL

7

8 Dynamically scale Pause and resume compute to save cost You will be charged for storage Scale compute in few minutes Service level: Data Warehouse Unit (DWU) units of compute scale CPU Memory IO operations DW100 1,28 EUR/h DW ,51 EUR/h Pause/Resume Scale Azure portal Yes Yes PowerShell Yes Yes REST API Yes Yes T-SQL No Yes

9 GEN 2 GEN 1 DW Capacity limits DW100 DW400 DW1000 DW6000 Compute Nodes Distibutions/ ComputeNode Memory per data warehouse (GB) Price /hour 1,28 5,10 12,75 76,51 DW500c DW2000c DW5000c DW30000c Compute Nodes Distibutions/ ComputeNode Memory per data warehouse (GB) Price /hour 6,38 25,50 63,75 382,52

10 Distributed tables Every single row in table is assigned to distribution (distributed storage location) Distributions are grouped into compute nodes Number of distributions in SDW in static - 60 (every DWU) Higher DWU = more compute nodes = less compueted nodes addigned to one distribution. DW6000/DW30000c: 1 compute node = 1 distribution

11 Creating databases Azure Portal TSQL PowerShell Database name unique within SQL Server that hosts Azure SQL Database and SQL Data Warehouse Collation Windows/ SQL collation, default: SQL_Latin1_General_CP1_CI_AS Maximum database size: 250 GB TB, by default 10 TB Gen2: Unlimited columnar storage Edition datawarehouse (the only option for ADW)

12 Gen2 5x query performance via a adaptive caching technology, NVMe Solid State Disk cache keeps the most frequently accessed data close to the CPUs (compute node) NVMe SSD = 3GB/sec throughput, 0,02 ms latency SATA SSD = 500MB/sec, 0,2 ms Improvement in serving concurrent queries (32 to 128 queries/cluster) Amazon Redshift maximum concurrent queries: 50 Unlimited columnar storage Offers the greatest level of scale by enabling you to scale up to 30,000 Data Warehouse Units (Gen1 DW6000) Microsoft recommends migrate to Gen2 SQL Data Warehouse

13

14 DEMO 1 Create database PDW_SHOWSPACEUSED() CTAS Demo10 CreateDB.sql

15 Tables and differences in TSQL

16 Create Table As Select (CTAS) Fully parallelized operation Creates a new table based on the output of SELECT statement CTAS is the simplest and fastest way to create a copy of a table Use CTAS to: Re-create a table with a different hash distribution column. Re-create a table as replicated. Create a columnstore index on just some of the columns in the table. Query or import external data Use partitioning

17 Distributed method Each database is divided into 60 distributions, using one of 3 methods; ROUND ROBIN (default) distributes evenly, but randomly, doesn t require knowledge about data/ queries HASH DISTRIBUTION Distributed using hash algorithm, equal values to same distribution, optimal for large tables REPLICATED TABLES All data present on every node, simplifies many queries plans and reduces data movement, best for small lookup tables

18 Distributed method ROUND ROBIN (default) The assignment of rows to distributions is random rows with equal values are not assigned to the same distribution When to use no obvious joining key not good candidate column for hash distributing the table table does not share a common join key with other tables join is less significant than other joins in the query table is a temporary staging table

19 Distributed method HASH DISTRIBUTION Distributes table rows across the Compute nodes by using a deterministic hash function. Hash column static, many unique values When to use: table size on disk is more than 2 GB

20 Distributed method REPLICATED TABLES All data present on every node, simplifies many queries plans and reduces data movement, best for small lookup tables. A table that is replicated caches a full copy of the table on each compute node. Consequently, replicating a table removes the need to transfer data among compute nodes before a join or aggregation.

21 Indexes clustered columnstore index (default) clustered index (rowstore, for more selective queries) nonclustered index (rowstore) heap (faster row insert) When NOT to use default, columnstore: Unsoported data types; varchar/nvarchar(max) Temporary tables Small tables (< 100 mln rows)

22 Statistics Statistical information about the distribution of values in table/ index Created on one or more columns SQL Data Warehouse supports auto create statistics (May 2018)

23 Temporary tables Rows are visible only in current session Dropped when user logged-out SQLDW and SQL Server temp tables Similarities Temp Table created BEFORE execution of dtored proc is visible within procedure Differences Temp table created within stored proc is visible after proc execution Usually created by CTAS statement Can be indexed (heap, columnstore clustered, clustered)

24 Partitioning Improve query performance Speed up loading and archiving of data (partition switching) maintenance operations on individual partitions instead of the whole table Remind, that in SQLDW all tables are already divided into 60 databases simplier syntax than SQL Server, no partition schema/ partition function

25 Not supported Identity (available from June 2017) Sequences Primary Key, Foreign Key, Unique, Check Unique indexes Computed columns Sparse columns User definied data types Triggers Indexed views Synonims

26 IDENTITY IDENTITY column property supported since June 2017 Not supported: SCOPE_IDENTITY functions Hash-distribution where the column is also the distribution key Where the table is an external table Doesn't guarantee the order in which the surrogate values are allocated Supported: IDENTITY_INSERT ON

27 DEMO 2 Demo20 Create tables.sql Demo21 Identity.sql Demo22 Indexes.sql Demo23 Statistics.sql Demo24 Temp tables.sql Demo25 Partitioning.sql Distributions - Round_robin - hash - replicate Identity Indexes Statistics Temporary tables Partitioning

28 Monitor and tune

29 LABEL Query hint to assign a comment to query Simplifies monitoring process Easy to find query in sys.dm_pdw_exec_requests DMV Use brackets when querying the label column, as it a key word

30 sys.dm_pdw_exec_requests Contain last 10K executed queries One row = one request/ query Status - 'Running', 'Suspended', 'Completed', 'Cancelled', 'Failed'. Resource_class - pre-determined resource limits to govern compute resources and concurrency for query execution Resource classes are implemented as pre-definied database roles.

31 sys.dm_pdw_request_steps All steps that compose a given request or query One row = query step Operation_type: DMS query plan operations (selected) SQL query plan operations ('OnOperation', 'RemoteOperation') Other query plan operations

32 Data Movement Service DMS - data transport technology that coordinates data movement between the Compute nodes. Some queries require data movement to ensure the parallel queries return accurate results. When data movement is required, DMS ensures the right data gets to the right location.

33 DISTRIBUTION COLUMN DISTRIBUTION COLUMN Data Movement between nodes NODE 1 ProductKey OrderDateKey CustomerKey SalesAmount ,99 CustomerKey Firstname Lastname Victoria Cooper CustomerKey Firstname Lastname Danny Travers NODE , Eduardo Turner Victoria Cooper NODE , Isabella Allen Eduardo Turner NODE , Danny Travers Isabella Allen

34 DEMO 3 Monitor and tune sys.dm_pdw_exec_requests sys.dm_pdw_request_steps join query performance - Hash - Round_robin - Replicate

35 Data loading

36 Data loading BCP Export to text file from SQL Server, import from text to SQL Data Warehouse PolyBase (External tables) 1. bcp export to flat file 2. AZCopy 3. Polybase SSIS ADO NET/ OLE DB Source Destination Azure Blob Upload Task Azure SQL DW Upload Task Redgate Data Platform Studio Other (Azure Lake Data Store, Azure Data Factory)

37 bcp Export/ import process: From text file to SQL Data Warehouse From SQL Data Warehouse to text file

38 Polybase Microsoft Polybase enables to query data from Hadoop and Blob Storage using TSQL With PolyBase, the data loads in parallel from the data source directly to the compute nodes The best (and fastest) method to load data into SQL Data Warahouse Data should be first loaded into Azure Blob Storage The higher DWU, the faster import

39 Polybase step by step 1. Bcp/SSIS export from SQL Server to text file 2. AZCOPY copying data to Azure Blob Storage 3. Access to Azure Blob Storage based on DATABASE SCOPED CREDENTIAL 4. Data source referencing credentials from previous step EXTERNAL DATA SOURCE 5. File format and external table table definitione EXTERNAL FILE FORMAT EXTERNAL TABLE 6. Load data into new table using CTAS statement

40 SQL Server Integration Services Feature Pack for Azure Azure Blob Upload Task replaces AZCopy

41 SQL Server Integration Services Feature Pack for Azure Azure SQL DW Upload Task Load data in text file to Blob Storage, and using Polybase integration to table in SDW

42 DEMO 4 Bcp Polybase SSIS Demo40 BCP.sql Demo41 Polybase.sql Demo42 SSIS.sql

43 THANK Slides, demos:

44 Thanks to our partners!

Azure SQL Data Warehouse. Andrija Marcic Microsoft

Azure SQL Data Warehouse. Andrija Marcic Microsoft Azure SQL Data Warehouse Andrija Marcic Microsoft End to end platform built for the cloud Hadoop SQL Azure SQL Data Warehouse Azure SQL Database App Service Intelligent App Azure Machine Learning Power

More information

L300 deck. Paul Duffett Mar2017

L300 deck. Paul Duffett Mar2017 L300 deck Paul Duffett (paduffet@microsoft.com) Twitter: @paulduffett Mar2017 Contents In presentation mode click on any box to jump to that section Introduction Use case, pattern and adoption Scenarios

More information

Non-relational Lift and Shift. Cheap, flexible Access Customer managed 250GB PB+

Non-relational Lift and Shift. Cheap, flexible Access Customer managed 250GB PB+ SQL Data Warehouse OLTP / DW workloads OLTP/ DW workloads DW workloads only Non-relational Lift and Shift Net new development Fully managed Cheap, flexible Access Customer managed Fully managed service

More information

Sepand Gojgini. ColumnStore Index Primer

Sepand Gojgini. ColumnStore Index Primer Sepand Gojgini ColumnStore Index Primer SQLSaturday Sponsors! Titanium & Global Partner Gold Silver Bronze Without the generosity of these sponsors, this event would not be possible! Please, stop by the

More information

Survey of the Azure Data Landscape. Ike Ellis

Survey of the Azure Data Landscape. Ike Ellis Survey of the Azure Data Landscape Ike Ellis Wintellect Core Services Consulting Custom software application development and architecture Instructor Led Training Microsoft s #1 training vendor for over

More information

Modern Data Warehouse The New Approach to Azure BI

Modern Data Warehouse The New Approach to Azure BI Modern Data Warehouse The New Approach to Azure BI History On-Premise SQL Server Big Data Solutions Technical Barriers Modern Analytics Platform On-Premise SQL Server Big Data Solutions Modern Analytics

More information

Get the Skinny on Minimally Logged Operations

Get the Skinny on Minimally Logged Operations Get the Skinny on Minimally Logged Operations Andrew J. Kelly akelly@solidq.com Who Am I? Mentor with SolidQ SQL Server MVP since 2001 Contributing editor & author for SQL Server Pro Magazine Over 20 years

More information

Swimming in the Data Lake. Presented by Warner Chaves Moderated by Sander Stad

Swimming in the Data Lake. Presented by Warner Chaves Moderated by Sander Stad Swimming in the Data Lake Presented by Warner Chaves Moderated by Sander Stad Thank You microsoft.com hortonworks.com aws.amazon.com red-gate.com Empower users with new insights through familiar tools

More information

Microsoft Analytics Platform System (APS)

Microsoft Analytics Platform System (APS) Microsoft Analytics Platform System (APS) The turnkey modern data warehouse appliance Matt Usher, Senior Program Manager @ Microsoft About.me @two_under Senior Program Manager 9 years at Microsoft Visual

More information

Polybase In Action. Kevin Feasel Engineering Manager, Predictive Analytics ChannelAdvisor #ITDEVCONNECTIONS ITDEVCONNECTIONS.COM

Polybase In Action. Kevin Feasel Engineering Manager, Predictive Analytics ChannelAdvisor #ITDEVCONNECTIONS ITDEVCONNECTIONS.COM Polybase In Action Kevin Feasel Engineering Manager, Predictive Analytics ChannelAdvisor Who Am I? What Am I Doing Here? Catallaxy Services Curated SQL We Speak Linux @feaselkl Polybase Polybase is Microsoft's

More information

Agenda. AWS Database Services Traditional vs AWS Data services model Amazon RDS Redshift DynamoDB ElastiCache

Agenda. AWS Database Services Traditional vs AWS Data services model Amazon RDS Redshift DynamoDB ElastiCache Databases on AWS 2017 Amazon Web Services, Inc. and its affiliates. All rights served. May not be copied, modified, or distributed in whole or in part without the express consent of Amazon Web Services,

More information

BI ENVIRONMENT PLANNING GUIDE

BI ENVIRONMENT PLANNING GUIDE BI ENVIRONMENT PLANNING GUIDE Business Intelligence can involve a number of technologies and foster many opportunities for improving your business. This document serves as a guideline for planning strategies

More information

Fast, In-Memory Analytics on PPDM. Calgary 2016

Fast, In-Memory Analytics on PPDM. Calgary 2016 Fast, In-Memory Analytics on PPDM Calgary 2016 In-Memory Analytics A BI methodology to solve complex and timesensitive business scenarios by using system memory as opposed to physical disk, by increasing

More information

Things I Learned The Hard Way About Azure Data Platform Services So You Don t Have To -Meagan Longoria

Things I Learned The Hard Way About Azure Data Platform Services So You Don t Have To -Meagan Longoria Things I Learned The Hard Way About Azure Data Platform Services So You Don t Have To -Meagan Longoria 2 University of Nebraska at Omaha Special thanks to UNO and the College of Business Administration

More information

Tour of Database Platforms as a Service. June 2016 Warner Chaves Christo Kutrovsky Solutions Architect

Tour of Database Platforms as a Service. June 2016 Warner Chaves Christo Kutrovsky Solutions Architect Tour of Database Platforms as a Service June 2016 Warner Chaves Christo Kutrovsky Solutions Architect Bio Solutions Architect at Pythian Specialize high performance data processing and analytics 15 years

More information

White Paper / Azure Data Platform: Ingest

White Paper / Azure Data Platform: Ingest White Paper / Azure Data Platform: Ingest Contents White Paper / Azure Data Platform: Ingest... 1 Versioning... 2 Meta Data... 2 Foreword... 3 Prerequisites... 3 Azure Data Platform... 4 Flowchart Guidance...

More information

marko.hotti@microsoft.com GARTNER MAGIC QUADRANT DW & BI Data Warehouse Database Management Systems Business Intelligence and Analytics Platforms * Disclaimer: Gartner does not endorse any vendor, product

More information

CAST(HASHBYTES('SHA2_256',(dbo.MULTI_HASH_FNC( tblname', schemaname'))) AS VARBINARY(32));

CAST(HASHBYTES('SHA2_256',(dbo.MULTI_HASH_FNC( tblname', schemaname'))) AS VARBINARY(32)); >Near Real Time Processing >Raphael Klebanov, Customer Experience at WhereScape USA >Definitions 1. Real-time Business Intelligence is the process of delivering business intelligence (BI) or information

More information

Přehled novinek v SQL Server 2016

Přehled novinek v SQL Server 2016 Přehled novinek v SQL Server 2016 Martin Rys, BI Competency Leader martin.rys@adastragrp.com https://www.linkedin.com/in/martinrys 20.4.2016 1 BI Competency development 2 Trends, modern data warehousing

More information

Eternal Story on Temporary Objects

Eternal Story on Temporary Objects Eternal Story on Temporary Objects Dmitri V. Korotkevitch http://aboutsqlserver.com About Me 14+ years of experience working with Microsoft SQL Server Microsoft SQL Server MVP Microsoft Certified Master

More information

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com Exam : 70-767 Title : Implementing a SQL Data Warehouse Version : DEMO 1 / 5 1.Note: This question is part

More information

Designing Database Solutions for Microsoft SQL Server (465)

Designing Database Solutions for Microsoft SQL Server (465) Designing Database Solutions for Microsoft SQL Server (465) Design a database structure Design for business requirements Translate business needs to data structures; de-normalize a database by using SQL

More information

SQL Server 2014 Column Store Indexes. Vivek Sanil Microsoft Sr. Premier Field Engineer

SQL Server 2014 Column Store Indexes. Vivek Sanil Microsoft Sr. Premier Field Engineer SQL Server 2014 Column Store Indexes Vivek Sanil Microsoft Vivek.sanil@microsoft.com Sr. Premier Field Engineer Trends in the Data Warehousing Space Approximate data volume managed by DW Less than 1TB

More information

microsoft

microsoft 70-775.microsoft Number: 70-775 Passing Score: 800 Time Limit: 120 min Exam A QUESTION 1 Note: This question is part of a series of questions that present the same scenario. Each question in the series

More information

Automating Information Lifecycle Management with

Automating Information Lifecycle Management with Automating Information Lifecycle Management with Oracle Database 2c The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Columnstore in real life

Columnstore in real life Columnstore in real life Enrique Catalá Bañuls Computer Engineer Microsoft Data Platform MVP Mentor at SolidQ Tuning and HA ecatala@solidq.com @enriquecatala Agenda What is real-time operational analytics

More information

Asanka Padmakumara. ETL 2.0: Data Engineering with Azure Databricks

Asanka Padmakumara. ETL 2.0: Data Engineering with Azure Databricks Asanka Padmakumara ETL 2.0: Data Engineering with Azure Databricks Who am I? Asanka Padmakumara Business Intelligence Consultant, More than 8 years in BI and Data Warehousing A regular speaker in data

More information

6232B: Implementing a Microsoft SQL Server 2008 R2 Database

6232B: Implementing a Microsoft SQL Server 2008 R2 Database 6232B: Implementing a Microsoft SQL Server 2008 R2 Database Course Overview This instructor-led course is intended for Microsoft SQL Server database developers who are responsible for implementing a database

More information

Columnstore Technology Improvements in SQL Server Presented by Niko Neugebauer Moderated by Nagaraj Venkatesan

Columnstore Technology Improvements in SQL Server Presented by Niko Neugebauer Moderated by Nagaraj Venkatesan Columnstore Technology Improvements in SQL Server 2016 Presented by Niko Neugebauer Moderated by Nagaraj Venkatesan Thank You microsoft.com hortonworks.com aws.amazon.com red-gate.com Empower users with

More information

SQL Server SQL Server 2008 and 2008 R2. SQL Server SQL Server 2014 Currently supporting all versions July 9, 2019 July 9, 2024

SQL Server SQL Server 2008 and 2008 R2. SQL Server SQL Server 2014 Currently supporting all versions July 9, 2019 July 9, 2024 Current support level End Mainstream End Extended SQL Server 2005 SQL Server 2008 and 2008 R2 SQL Server 2012 SQL Server 2005 SP4 is in extended support, which ends on April 12, 2016 SQL Server 2008 and

More information

SQL Server 2016 gives 40% improved performance over SQL Server 2014

SQL Server 2016 gives 40% improved performance over SQL Server 2014 Overview World Record Breaking Performance (TPC-H) SQL Server 06 gives 40% improved performance over SQL Server 04 SSAS 06 Query Exec Multi-Dimensional (MOLAP) Tabular (VertiPaq) Query Exec ETL SSAS 06

More information

Seven Awesome SQL Server Features

Seven Awesome SQL Server Features Seven Awesome SQL Server Features That You Can Use for Free Allison Benneth @SQLTran www.sqltran.org SQL Server Editions SQL2005 SQL2008 SQL2008R2 SQL2012 SQL2014 SQL2016 * Free starting with SQL Server

More information

DESIGNING DATABASE SOLUTIONS FOR MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE

DESIGNING DATABASE SOLUTIONS FOR MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE 70-465 DESIGNING DATABASE SOLUTIONS FOR MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE Designing Database Solutions for Microsoft SQL Server (70-465) WWW.ANALYTICSEXAM.COM Contents Designing

More information

Exam Questions

Exam Questions Exam Questions 70-775 Perform Data Engineering on Microsoft Azure HDInsight (beta) https://www.2passeasy.com/dumps/70-775/ NEW QUESTION 1 You are implementing a batch processing solution by using Azure

More information

Azure Data Factory VS. SSIS. Reza Rad, Consultant, RADACAD

Azure Data Factory VS. SSIS. Reza Rad, Consultant, RADACAD Azure Data Factory VS. SSIS Reza Rad, Consultant, RADACAD 2 Please silence cell phones Explore Everything PASS Has to Offer FREE ONLINE WEBINAR EVENTS FREE 1-DAY LOCAL TRAINING EVENTS VOLUNTEERING OPPORTUNITIES

More information

SQL Server 2014 Internals and Query Tuning

SQL Server 2014 Internals and Query Tuning SQL Server 2014 Internals and Query Tuning Course ISI-1430 5 days, Instructor led, Hands-on Introduction SQL Server 2014 Internals and Query Tuning is an advanced 5-day course designed for experienced

More information

Successfully migrate existing databases to Azure SQL Database. John Sterrett Principal Consultant

Successfully migrate existing databases to Azure SQL Database. John Sterrett Principal Consultant Successfully migrate existing databases to Azure SQL Database John Sterrett Principal Consultant Common Migration failures Plan Test Execute Manage Free Reference Material Videos, Reference Links, Tips,

More information

Data Architectures in Azure for Analytics & Big Data

Data Architectures in Azure for Analytics & Big Data Data Architectures in for Analytics & Big Data October 20, 2018 Melissa Coates Solution Architect, BlueGranite Microsoft Data Platform MVP Blog: www.sqlchick.com Twitter: @sqlchick Data Architecture A

More information

Course Outline. Upgrading Your Skills to SQL Server 2016 Course 10986A: 3 days Instructor Led

Course Outline. Upgrading Your Skills to SQL Server 2016 Course 10986A: 3 days Instructor Led Upgrading Your Skills to SQL Server 2016 Course 10986A: 3 days Instructor Led About this course This three-day instructor-led course provides students moving from earlier releases of SQL Server with an

More information

Martin Cairney. The Why and How of Partitioned Tables

Martin Cairney. The Why and How of Partitioned Tables Martin Cairney The Why and How of ed Tables Housekeeping Mobile Phones please set to stun during the session Session Evaluation Martin Cairney Microsoft Data Platform MVP Microsoft Certified Trainer Organiser

More information

ETL Best Practices and Techniques. Marc Beacom, Managing Partner, Datalere

ETL Best Practices and Techniques. Marc Beacom, Managing Partner, Datalere ETL Best Practices and Techniques Marc Beacom, Managing Partner, Datalere Thank you Sponsors Experience 10 years DW/BI Consultant 20 Years overall experience Marc Beacom Managing Partner, Datalere Current

More information

This course is suitable for delegates working with all versions of SQL Server from SQL Server 2008 through to SQL Server 2016.

This course is suitable for delegates working with all versions of SQL Server from SQL Server 2008 through to SQL Server 2016. (SSIS) SQL Server Integration Services Course Description: Delegates attending this course will have requirements to implement SQL Server Integration Services (SSIS) to export and import data between mixed

More information

Martin Cairney SPLIT, MERGE & ELIMINATE. SQL Saturday #572 : Oregon : 22 nd October, 2016

Martin Cairney SPLIT, MERGE & ELIMINATE. SQL Saturday #572 : Oregon : 22 nd October, 2016 Martin Cairney SPLIT, MERGE & ELIMINATE AN INTRODUCTION TO PARTITIONING SQL Saturday #572 : Oregon : 22 nd October, 2016 Housekeeping Mobile Phones please set to stun during the session Connect with the

More information

Microsoft. [MS20762]: Developing SQL Databases

Microsoft. [MS20762]: Developing SQL Databases [MS20762]: Developing SQL Databases Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : Microsoft SQL Server Delivery Method : Instructor-led (Classroom) Course Overview This five-day

More information

VOLTDB + HP VERTICA. page

VOLTDB + HP VERTICA. page VOLTDB + HP VERTICA ARCHITECTURE FOR FAST AND BIG DATA ARCHITECTURE FOR FAST + BIG DATA FAST DATA Fast Serve Analytics BIG DATA BI Reporting Fast Operational Database Streaming Analytics Columnar Analytics

More information

Autonomous Database Level 100

Autonomous Database Level 100 Autonomous Database Level 100 Sanjay Narvekar December 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Niraj Kumar Lead Azure Architect, MCT( Microsoft Certified Trainer)

Niraj Kumar Lead Azure Architect, MCT( Microsoft Certified Trainer) Niraj Kumar Lead Azure Architect, MCT( Microsoft Certified Trainer) Azure Storage Azure Storage Overview Types of Storage Account and performance tiers Storage Replication Scope Types of Storage Managed

More information

One is the Loneliest Number: Scaling out your Data Warehouse

One is the Loneliest Number: Scaling out your Data Warehouse One is the Loneliest Number: Scaling out your Data Warehouse Greg Galloway SQL Saturday Dallas #396 BI Edition Page 1 Agenda Common data warehouse pain points Analytics Platform System (APS) overview Analytics

More information

Developing SQL Databases

Developing SQL Databases Course 20762B: Developing SQL Databases Page 1 of 9 Developing SQL Databases Course 20762B: 4 days; Instructor-Led Introduction This four-day instructor-led course provides students with the knowledge

More information

Oracle 1Z0-515 Exam Questions & Answers

Oracle 1Z0-515 Exam Questions & Answers Oracle 1Z0-515 Exam Questions & Answers Number: 1Z0-515 Passing Score: 800 Time Limit: 120 min File Version: 38.7 http://www.gratisexam.com/ Oracle 1Z0-515 Exam Questions & Answers Exam Name: Data Warehousing

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

MCSE Data Management and Analytics. A Success Guide to Prepare- Developing Microsoft SQL Server Databases. edusum.com

MCSE Data Management and Analytics. A Success Guide to Prepare- Developing Microsoft SQL Server Databases. edusum.com 70-464 MCSE Data Management and Analytics A Success Guide to Prepare- Developing Microsoft SQL Server Databases edusum.com Table of Contents Introduction to 70-464 Exam on Developing Microsoft SQL Server

More information

Updating Your Skills to SQL Server 2016

Updating Your Skills to SQL Server 2016 Updating Your Skills to SQL Server 2016 OD10986B; On-Demand, Video-based Course Description This course provides students moving from earlier releases of SQL Server with an introduction to the new features

More information

BIG DATA COURSE CONTENT

BIG DATA COURSE CONTENT BIG DATA COURSE CONTENT [I] Get Started with Big Data Microsoft Professional Orientation: Big Data Duration: 12 hrs Course Content: Introduction Course Introduction Data Fundamentals Introduction to Data

More information

Microsoft. Exam Questions Perform Data Engineering on Microsoft Azure HDInsight (beta) Version:Demo

Microsoft. Exam Questions Perform Data Engineering on Microsoft Azure HDInsight (beta) Version:Demo Microsoft Exam Questions 70-775 Perform Data Engineering on Microsoft Azure HDInsight (beta) Version:Demo NEW QUESTION 1 You have an Azure HDInsight cluster. You need to store data in a file format that

More information

Alexander Klein. #SQLSatDenmark. ETL meets Azure

Alexander Klein. #SQLSatDenmark. ETL meets Azure Alexander Klein ETL meets Azure BIG Thanks to SQLSat Denmark sponsors Save the date for exiting upcoming events PASS Camp 2017 Main Camp 05.12. 07.12.2017 (04.12. Kick-Off abends) Lufthansa Training &

More information

20762B: DEVELOPING SQL DATABASES

20762B: DEVELOPING SQL DATABASES ABOUT THIS COURSE This five day instructor-led course provides students with the knowledge and skills to develop a Microsoft SQL Server 2016 database. The course focuses on teaching individuals how to

More information

Course Prerequisites: This course requires that you meet the following prerequisites:

Course Prerequisites: This course requires that you meet the following prerequisites: Developing MS SQL Server Databases This five-day instructor-led course introduces SQL Server 2014 and describes logical table design, indexing and query plans. It also focusses on the creation of database

More information

HDInsight > Hadoop. October 12, 2017

HDInsight > Hadoop. October 12, 2017 HDInsight > Hadoop October 12, 2017 2 Introduction Mark Hudson >20 years mixing technology with data >10 years with CapTech Microsoft Certified IT Professional Business Intelligence Member of the Richmond

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

SQT03 Big Data and Hadoop with Azure HDInsight Andrew Brust. Senior Director, Technical Product Marketing and Evangelism

SQT03 Big Data and Hadoop with Azure HDInsight Andrew Brust. Senior Director, Technical Product Marketing and Evangelism Big Data and Hadoop with Azure HDInsight Andrew Brust Senior Director, Technical Product Marketing and Evangelism Datameer Level: Intermediate Meet Andrew Senior Director, Technical Product Marketing and

More information

Azure SQL Database Training. Complete Practical & Real-time Trainings. A Unit of SequelGate Innovative Technologies Pvt. Ltd.

Azure SQL Database Training. Complete Practical & Real-time Trainings. A Unit of SequelGate Innovative Technologies Pvt. Ltd. Azure SQL Database Training Complete Practical & Real-time Trainings A Unit of SequelGate Innovative Technologies Pvt. Ltd. AZURE SQL / DBA Training consists of TWO Modules: Module 1: Azure SQL Database

More information

Jyotheswar Kuricheti

Jyotheswar Kuricheti Jyotheswar Kuricheti 1 Agenda: 1. Performance Tuning Overview 2. Identify Bottlenecks 3. Optimizing at different levels : Target Source Mapping Session System 2 3 Performance Tuning Overview: 4 What is

More information

Lenovo Database Configuration for Microsoft SQL Server TB

Lenovo Database Configuration for Microsoft SQL Server TB Database Lenovo Database Configuration for Microsoft SQL Server 2016 22TB Data Warehouse Fast Track Solution Data Warehouse problem and a solution The rapid growth of technology means that the amount of

More information

Microsoft Exam

Microsoft Exam Volume: 42 Questions Case Study: 1 Relecloud General Overview Relecloud is a social media company that processes hundreds of millions of social media posts per day and sells advertisements to several hundred

More information

SQL Server Development 20762: Developing SQL Databases in Microsoft SQL Server Upcoming Dates. Course Description.

SQL Server Development 20762: Developing SQL Databases in Microsoft SQL Server Upcoming Dates. Course Description. SQL Server Development 20762: Developing SQL Databases in Microsoft SQL Server 2016 Learn how to design and Implement advanced SQL Server 2016 databases including working with tables, create optimized

More information

Martin Cairney. Hybrid data platform making the most of Azure plus your onprem

Martin Cairney. Hybrid data platform making the most of Azure plus your onprem Martin Cairney Hybrid data platform making the most of Azure plus your onprem kit Housekeeping Mobile Phones please set to stun during sessions Evaluations complete online to be in the draw for fantastic

More information

ColumnStore Indexes UNIQUE and NOT DULL

ColumnStore Indexes UNIQUE and NOT DULL Agenda ColumnStore Indexes About me The Basics Key Characteristics DEMO SQL Server 2014 ColumnStore indexes DEMO Best Practices Data Types Restrictions SQL Server 2016+ ColumnStore indexes Gareth Swanepoel

More information

SQL Server Databases in the Clouds

SQL Server Databases in the Clouds SQL Server Databases in the Clouds SQL SATURDAY # 787 TIM PLAS AUG 18, 2018 TPLAS@CLOUDNET.COM @TJPLAS Virteva, Inc. 2015 Virteva, Inc. 2015 The presenter Tim Plas Principal Consultant at Virteva (Mpls)

More information

SQL Server on Linux and Containers

SQL Server on Linux and Containers http://aka.ms/bobwardms https://github.com/microsoft/sqllinuxlabs SQL Server on Linux and Containers A Brave New World Speaker Name Principal Architect Microsoft bobward@microsoft.com @bobwardms linkedin.com/in/bobwardms

More information

SQL Server 2014 In-Memory Technologies.

SQL Server 2014 In-Memory Technologies. SQL Server 2014 In-Memory Technologies Agenda Columnstore technology Clustered columntore index Nonclusterd columnstore index Memory-optimized tables Summary Columnstore technology Highlights Storage Columnstore

More information

Troubleshooting Always On Availability Groups Performance

Troubleshooting Always On Availability Groups Performance Andreas Wolter Troubleshooting Always On Availability Groups Performance Andreas Wolter (SQLMCM) 1 About: Andreas Wolter Consultant, Trainer & Speaker Microsoft Certified Master SQL Server 2008 + Solutions

More information

Microsoft. Exam Questions Perform Data Engineering on Microsoft Azure HDInsight (beta) Version:Demo

Microsoft. Exam Questions Perform Data Engineering on Microsoft Azure HDInsight (beta) Version:Demo Microsoft Exam Questions 70-775 Perform Data Engineering on Microsoft Azure HDInsight (beta) Version:Demo NEW QUESTION 1 HOTSPOT You install the Microsoft Hive ODBC Driver on a computer that runs Windows

More information

SQL Server Evolution. SQL 2016 new innovations. Trond Brande

SQL Server Evolution. SQL 2016 new innovations. Trond Brande SQL Server Evolution SQL 2016 new innovations Trond Brande SQL Server 2016 Editions Enterprise Express SMALL-SCALE DATABASES Development and management tools Easy backup and restore to Microsoft Azure

More information

Big Data solution benchmark

Big Data solution benchmark Big Data solution benchmark Introduction In the last few years, Big Data Analytics have gained a very fair amount of success. The trend is expected to grow rapidly with further advancement in the coming

More information

Azure Data Lake Store

Azure Data Lake Store Azure Data Lake Store Analytics 101 Kenneth M. Nielsen Data Solution Architect, MIcrosoft Our Sponsors About me Kenneth M. Nielsen Worked with SQL Server since 1999 Data Solution Architect at Microsoft

More information

CIS 601 Graduate Seminar. Dr. Sunnie S. Chung Dhruv Patel ( ) Kalpesh Sharma ( )

CIS 601 Graduate Seminar. Dr. Sunnie S. Chung Dhruv Patel ( ) Kalpesh Sharma ( ) Guide: CIS 601 Graduate Seminar Presented By: Dr. Sunnie S. Chung Dhruv Patel (2652790) Kalpesh Sharma (2660576) Introduction Background Parallel Data Warehouse (PDW) Hive MongoDB Client-side Shared SQL

More information

Stages of Data Processing

Stages of Data Processing Data processing can be understood as the conversion of raw data into a meaningful and desired form. Basically, producing information that can be understood by the end user. So then, the question arises,

More information

IT Best Practices Audit TCS offers a wide range of IT Best Practices Audit content covering 15 subjects and over 2200 topics, including:

IT Best Practices Audit TCS offers a wide range of IT Best Practices Audit content covering 15 subjects and over 2200 topics, including: IT Best Practices Audit TCS offers a wide range of IT Best Practices Audit content covering 15 subjects and over 2200 topics, including: 1. IT Cost Containment 84 topics 2. Cloud Computing Readiness 225

More information

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda Agenda Oracle9i Warehouse Review Dulcian, Inc. Oracle9i Server OLAP Server Analytical SQL Mining ETL Infrastructure 9i Warehouse Builder Oracle 9i Server Overview E-Business Intelligence Platform 9i Server:

More information

Netezza The Analytics Appliance

Netezza The Analytics Appliance Software 2011 Netezza The Analytics Appliance Michael Eden Information Management Brand Executive Central & Eastern Europe Vilnius 18 October 2011 Information Management 2011IBM Corporation Thought for

More information

Venezuela: Teléfonos: / Colombia: Teléfonos:

Venezuela: Teléfonos: / Colombia: Teléfonos: CONTENIDO PROGRAMÁTICO Moc 20761: Querying Data with Transact SQL Module 1: Introduction to Microsoft SQL Server This module introduces SQL Server, the versions of SQL Server, including cloud versions,

More information

Microsoft Developing SQL Databases

Microsoft Developing SQL Databases 1800 ULEARN (853 276) www.ddls.com.au Length 5 days Microsoft 20762 - Developing SQL Databases Price $4290.00 (inc GST) Version C Overview This five-day instructor-led course provides students with the

More information

ColumnStore Indexes. מה חדש ב- 2014?SQL Server.

ColumnStore Indexes. מה חדש ב- 2014?SQL Server. ColumnStore Indexes מה חדש ב- 2014?SQL Server דודאי מאיר meir@valinor.co.il 3 Column vs. row store Row Store (Heap / B-Tree) Column Store (values compressed) ProductID OrderDate Cost ProductID OrderDate

More information

Change Schema Of Tables Procedures In Sql. Server 2008 >>>CLICK HERE<<<

Change Schema Of Tables Procedures In Sql. Server 2008 >>>CLICK HERE<<< Change Schema Of Tables Procedures In Sql Server 2008 I want to know if there is any risks involved when changing a table's schema, for example from dbo. to xyz. or visa Creating procedure SQL Server 2008

More information

Azure Data Factory. Data Integration in the Cloud

Azure Data Factory. Data Integration in the Cloud Azure Data Factory Data Integration in the Cloud 2018 Microsoft Corporation. All rights reserved. This document is provided "as-is." Information and views expressed in this document, including URL and

More information

Greenplum Architecture Class Outline

Greenplum Architecture Class Outline Greenplum Architecture Class Outline Introduction to the Greenplum Architecture What is Parallel Processing? The Basics of a Single Computer Data in Memory is Fast as Lightning Parallel Processing Of Data

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST \ http://www.pass4test.com We offer free update service for one year Exam : 70-464 Title : Developing Microsoft SQL Server 2012 Databases Vendor : Microsoft Version : DEMO Get Latest & Valid

More information

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents Workshop Name Duration Objective Participants Entry Profile Training Methodology Setup Requirements Hardware and Software Requirements Training Lab Requirements Synergetics-Standard-SQL Server 2012-DBA-7

More information

Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course:

Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course: Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course: 20762C Developing SQL 2016 Databases Module 1: An Introduction to Database Development Introduction to the

More information

Get ready to be what s next.

Get ready to be what s next. Get ready to be what s next. Jared Shockley http://jaredontech.com Senior Service Engineer Prior Experience @jshoq Primary Experience Areas Agenda What is Microsoft Azure? Provider-hosted Apps Hosting

More information

MySQL Database Administrator Training NIIT, Gurgaon India 31 August-10 September 2015

MySQL Database Administrator Training NIIT, Gurgaon India 31 August-10 September 2015 MySQL Database Administrator Training Day 1: AGENDA Introduction to MySQL MySQL Overview MySQL Database Server Editions MySQL Products MySQL Services and Support MySQL Resources Example Databases MySQL

More information

SAP IQ - Business Intelligence and vertical data processing with 8 GB RAM or less

SAP IQ - Business Intelligence and vertical data processing with 8 GB RAM or less SAP IQ - Business Intelligence and vertical data processing with 8 GB RAM or less Dipl.- Inform. Volker Stöffler Volker.Stoeffler@DB-TecKnowledgy.info Public Agenda Introduction: What is SAP IQ - in a

More information

New features in SQL Server 2016

New features in SQL Server 2016 New features in SQL Server 2016 Joydip Kanjilal Microsoft MVP (2007 till 2012), Author and Speaker Principal Architect (SenecaGlobal IT Services Private Limited) Agenda SQL Server 2016 Enhancements Improved

More information

Data Warehouse in the Cloud Benchmark

Data Warehouse in the Cloud Benchmark REPORT Data Warehouse in the Cloud Benchmark Product Profile and Evaluation: Amazon Redshift, Microsoft Azure SQL Data Warehouse, Google BigQuery, and Snowflake Data Warehouse WILLIAM MCKNIGHT, AND JAKE

More information

Developing SQL Databases (762)

Developing SQL Databases (762) Developing SQL Databases (762) Design and implement database objects Design and implement a relational database schema Design tables and schemas based on business requirements, improve the design of tables

More information

BI4Dynamics AX/NAV Integrate external data sources

BI4Dynamics AX/NAV Integrate external data sources BI4Dynamics AX/NAV Last update: November 2018 Version: 2.1 Abbreviation used in this document: EDS: External Data Source(s) are data that are not a part of Microsoft Dynamics AX/NAV. It can come from any

More information

New Features in SQL That Will Change the Way You Tune

New Features in SQL That Will Change the Way You Tune New Features in SQL That Will Change the Way You Tune LANCE TIDWELL Lance Tidwell Senior DBA, TIcketCity @Lance_LT silentdba@gmail.com Agenda New Cardinality Estimator (2014) Query Store (2016) Automatic

More information

Exam /Course 20767B: Implementing a SQL Data Warehouse

Exam /Course 20767B: Implementing a SQL Data Warehouse Exam 70-767/Course 20767B: Implementing a SQL Data Warehouse Course Outline Module 1: Introduction to Data Warehousing This module describes data warehouse concepts and architecture consideration. Overview

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