SlideShare a Scribd company logo
SQL Server 2016
New Features &
Business Benefits
Lace Market House
Nottingham
NG1 1HW
www.onomi.co.uk
www.onomi.co.uk
Microsoft is a market leader for…..
[1] *Gartner “Magic Quadrant for Operational Database Management Systems,” by Donald Feinberg , Merv Adrian , Nick Heudecker, Adam Ronthal, October 2015
[2] *Gartner “Magic Quadrant for Business Intelligenceand Analytics Platforms,” by Rita Sallam and Josh Parenteau, February 23, 2015
[3] *Gartner “Magic Quadrant for Data Warehouse and Data Management Solutions for Analytics,” by Mark Beyer and Roxane Edjlali, February 12, 2015
This graphic was published by Gartner, Inc. as part of a larger research document and should be evaluated in the context of the entire document. The Gartner document is availableupon request from Microsoft. Gartner does not endorse any vendor, product or service depicted in its research publications, and does
not advise technology users to select only those vendors with the highest ratings or other designation. Gartner research publicationsconsist of the opinions of Gartner's research organization and should not be construed as statements of fact. Gartner disclaims all warranties,expressed or implied, with respect to this
research, includingany warranties of merchantability or fitness for a particular purpose.
Magic Quadrant for Data Warehouse
Database Management Solutions3
A leader for the fourth consecutive year
Magic Quadrant for Business Intelligence
and Analytics Platforms2
A leader 8 years running
Magic Quadrant for Operational
Database Management Systems1
Furthest in vision and ability to execute
SQL Server 2016: Everything built-in
The above graphics were published by Gartner, Inc. as part of a larger research document and should be evaluated in the context of the entire document. The Gartner document is available upon request from Microsoft. Gartner does not endorse any vendor, product or service depicted in its
research publications, and does not advise technology users to select only those vendors with the highest ratings or other designation. Gartner research publications consist of the opinions of Gartner's research organization and should not be construed as statements of fact. Gartner disclaims all
warranties, expressed or implied, with respect to this research, including any warranties of merchantability or fitness for a particular purpose.
Consistent experience from on-premises to cloud
Microsoft Tableau Oracle
$120
$480
$2,230
Self-service BI per user
In-memoryacrossall workloads
TPC-H non-clustered results as of 04/06/15, 5/04/15, 4/15/14 and 11/25/13, respectively. http://www.tpc.org/tpch/results/tpch_perf_results.asp?resulttype=noncluster
at massive scale
0 1
4
0 0
3
34
29
22
15
5
22
6
43
20
69
18
49
3
0
10
20
30
40
50
60
70
80
2010 2011 2012 2013 2014 2015
SQL Server Oracle MySQL SAP HANA TPC-H non-clustered 10TB
Oracle
is #5#2
SQL Server
#1
SQL Server
#3
SQL Server
National Institute of Standards and Technology Comprehensive Vulnerability Database update 10/2015
SQL 2016 Editions – what’s New
EnterpriseStandardExp.
SQL Server 2016 Features by Edition (General)
Feature Express Standard Enterprise
Maximum number of cores 4 cores 24 cores Unlimited
Maximum memory utilized per instance 1 GB 128 GB OS Max
Maximum size 10 GB 524 PB 524 PB
Production use rights   
Basic OLTP   
Manageability (Management Studio, Policy-Based Management)   
Basic high availability (2-node single database failover,
non-readable secondary)   
Enterprise data management (Master Data Services, Data Quality
Services)   
Advanced OLTP (In-memory OLTP, Operational analytics)   
Advanced HA (Always On - multi-node, multi-db failover, readable
secondary's)   
SQL Server 2016 Features by Edition
(Security, DW, Analytics & Hybrid)
Feature Express Standard Enterprise
Basic security (Row-level security, data masking, basic auditing,
separation of duties)   
Advanced security
(Transparent Data Encryption, Always Encrypted)   
Advanced data integration (Fuzzy grouping and look ups, change data
capture)   
Data warehousing (In-Memory ColumnStore, Partitioning)   
Basic “R” integration (Connectivity to R Open, Limited parallelism
for RRE)   
Advanced “R” integration (Full parallelism for RRE)   
Stretch Database   
SQL Server 2016 Features by Edition (Business
Intelligence)
Feature Express Standard Enterprise
Programmability & developer tools (T-SQL, CLR, Data Types,
FileTable, JSON)   
Basic reporting & analytics   
Basic data integration (SSIS, built-in connectors)   
Basic Corporate Business Intelligence (Multi-dimensional models,
Basic tabular model)   
Mobile BI (Datazen)   
Advanced Corporate Business Intelligence (Advanced tabular
model, Direct query, in-memory analytics, advanced data mining)   
Stretch SQL Server into Azure (Stretch Database)
Capability
 Stretch large operational tables
from on-premises to Azure with
the ability to query
Benefits
SQL
SERVER
2016
Azure
Hybrid solutions
Customer data
Product data
Order History
Stretch to cloud
JSON in SQL Server 2016
[
{
"Number":"SO43659",
"Date":"2011-05-31T00:00:00"
"AccountNumber":"AW29825",
"Price":59.99,
"Quantity":1
},
{
"Number":"SO43661",
"Date":"2011-06-01T00:00:00“
"AccountNumber":"AW73565“,
"Price":24.99,
"Quantity":3
}
]
Number Date Customer Price Quantity
SO43659 2011-05-31T00:00:00 MSFT 59.99 1
SO43661 2011-06-01T00:00:00 Nokia 24.99 3
Table 2 JSON
Formats result set
as JSON text.
JSON 2 table
Migrates JSON
text to table
Built-in functions
ISJSON
JSON_VALUE
JSON_MODIFY
Performance
Note: No custom type or index, stored as NVARCHAR
Always Encrypted: How it works
Help protect data at rest and in motion, on-premises and in
the cloud
SQL Server or SQL Database
ADO .NET
Name
Wayne Jefferson
Name
0x19ca706fbd9a
Result SetResult Set
Client
Name SSN Country
0x19ca706fbd9a 0x7ff654ae6d USA
dbo.Customers
ciphertext
"SELECT Name FROM Customers WHERE SSN = @SSN",
0x7ff654ae6d
ciphertext
"SELECT Name FROM Customers WHERE SSN =
@SSN",
"111-22-3333"
Encrypted sensitive data and corresponding keys
are never seen in plaintext in SQL Server
trust boundary
Security
Always Encrypted
Help protect data at rest and in motion, on-premises and in
the cloud
Data remains encrypted
during query
Capability
ADO.Net client library provides
transparent client-side encryption,
while SQL Server executes T-SQL
queries on encrypted data
Benefits
Apps TCE-enabled
ADO .NET library
SQL ServerEncrypted
query
Columnar
key
No app
changes
Master
key
Security
Row Level Security
Fine-grained access control over specific rows in a database
table
Help prevent unauthorized access when multiple users share the
same tables, or to implement connection filtering in multitenant
applications
Administer via SQL Server Management Studio or SQL Server
Data Tools
Enforcement logic inside the database and schema is bound to
the table
Protect data privacy by ensuring
the right access across rows
SQL Database
Customer 1
Customer 2
Customer 3
Security
Row Level Security
Fine-grained access
control
Keeping multitenant databases
secure by limiting access by
other users who share the same
tables
Application
transparency
RLS works transparently at
query time, no app changes
needed
Compatible with RLS in other
leading products
Centralized security
logic
Enforcement logic resides
inside database and is schema-
bound to the table it protects
providing greater security.
Reduced application
maintenance and complexity
Store data intended for many consumers in a single database/table while at the same time
restricting row-level read and write access based on users’ execution context.
Data Masking
Configuration made easy in the new Azure portal
Policy-driven at the table and column level, for a
defined set of users
Data masking applied in real-time to query results
based on policy
Multiple masking functions available (e.g. full,
partial) for various sensitive data categories (credit
card numbers, SSN, etc.)
SQL Database
SQL Server 2016
Table.CreditCardNo
4465-6571-7868-5796
4468-7746-3848-1978
4484-5434-6858-6550
Real-time data masking;
partial masking
Prevent the abuse of sensitive
data by hiding it from users
Security
Data Masking
Regulatory
compliance
Sensitive data
protection
Agility and
transparency
Data is masked on the fly, with
underlying data in the database
remaining intact. Transparent to
the application and applied
according to user privilege
Limit access to sensitive data by defining policies to obfuscate specific database fields,
without affecting the integrity of the database.
Enhanced AlwaysOn Availability Groups
Greater scalability
 Load balancing readable secondaries
 Increased number of automatic
failover targets
 Log transport performance
Improved manageability
 DTC support
 Database-level health monitoring
 Group Managed Service Account
 Domain-independent Availability
Groups
AG_Listener
New York
(Primary)
Asynchronous data
Movement
Synchronous data
Movement
Unified HA solution
AG
Hong Kong
(Secondary)
AG
New Jersey
(Secondary)
AG
Enhanced AlwaysOn Availability Groups
Load balancing in readable secondary's
Computer5
DR site Computer2
Computer3
Computer4
Primary
site
Computer1
(Primary)
READ_ONLY_ROUTING_LIST=
(('COMPUTER2', 'COMPUTER3',
'COMPUTER4'), 'COMPUTER5')
 In SQL 2014, read-only
transactions routed by the
Listener went to the first
secondary that was available
 Read-only Routing (ROR) lists
 Now you can configure the
ROR lists to round-robin
among a specific set of
secondary's (for each
primary)
Availability
Polybase view in SQL Server 2016
 Execute T-SQL queries against
relational data in SQL Server and
‘semi-structured’ data in HDFS
and/or Azure
 Leverage existing T-SQL skills and BI
tools to gain insights from different
data stores
 Expand the reach of SQL Server to
Hadoop(HDFS)
Revolution R Enterprise & SQL
Big data analytics platform
Based on open source R
High-performance, scalable, full-featured
Statistical and machine-learning algorithms are
performant, scalable, and distributable
Write once, deploy anywhere
Scripts and models can be executed on a variety of
platforms, including non-Microsoft (Hadoop,
Teradata in-DB)
Integration with the R Ecosystem
Analytic algorithms accessed via R function with similar
syntax for R users. Arbitrary R functions/packages can
be used in conjunction
Real-time operational analytics – In Memory
0100101010110
In-memory
ColumnStore
In-memory
OLTP
Real-time business problem
detection
 Up to 30x faster
transactions with
in-memory OLTP
 Queries from
minutes to
seconds
 Real-time
operational
analytics
Mobile BI for SQL Server
Business insights through rich visualizations
on any device
Native apps for Windows,
iOS and Android
 Create once and publish to any device
 Access your data from anywhere
 Custom branding
 Touch-optimized data exploration and perfect
scaling to any screen form-factor
 Collaborate with colleagues on the go
Customer References
Thank you

More Related Content

What's hot

SQL Server 2014 New Features
SQL Server 2014 New FeaturesSQL Server 2014 New Features
SQL Server 2014 New Features
Onomi
 
Introduction to sql database on azure
Introduction to sql database on azureIntroduction to sql database on azure
Introduction to sql database on azure
Antonios Chatzipavlis
 
Sql 2016 - What's New
Sql 2016 - What's NewSql 2016 - What's New
Sql 2016 - What's New
dpcobb
 
How SQL Server 2016 SP1 Changes the Game
How SQL Server 2016 SP1 Changes the GameHow SQL Server 2016 SP1 Changes the Game
How SQL Server 2016 SP1 Changes the Game
PARIKSHIT SAVJANI
 
SQL Server 2017 Enhancements You Need To Know
SQL Server 2017 Enhancements You Need To KnowSQL Server 2017 Enhancements You Need To Know
SQL Server 2017 Enhancements You Need To Know
Quest
 
Stretch db sql server 2016 (sn0028)
Stretch db   sql server 2016 (sn0028)Stretch db   sql server 2016 (sn0028)
Stretch db sql server 2016 (sn0028)
Antonios Chatzipavlis
 
SQL Server 2016 Everything built-in FULL deck
SQL Server 2016 Everything built-in FULL deckSQL Server 2016 Everything built-in FULL deck
SQL Server 2016 Everything built-in FULL deckHamid J. Fard
 
Azure SQL Database & Azure SQL Data Warehouse
Azure SQL Database & Azure SQL Data WarehouseAzure SQL Database & Azure SQL Data Warehouse
Azure SQL Database & Azure SQL Data Warehouse
Mohamed Tawfik
 
Introduction to Azure Data Lake
Introduction to Azure Data LakeIntroduction to Azure Data Lake
Introduction to Azure Data Lake
Antonios Chatzipavlis
 
Azure data platform overview
Azure data platform overviewAzure data platform overview
Azure data platform overview
James Serra
 
Implement SQL Server on an Azure VM
Implement SQL Server on an Azure VMImplement SQL Server on an Azure VM
Implement SQL Server on an Azure VM
James Serra
 
Introducing Microsoft SQL Server 2017
Introducing Microsoft SQL Server 2017Introducing Microsoft SQL Server 2017
Introducing Microsoft SQL Server 2017
David J Rosenthal
 
SQL Server 2019 Master Data Service
SQL Server 2019 Master Data ServiceSQL Server 2019 Master Data Service
SQL Server 2019 Master Data Service
Kenichiro Nakamura
 
Temporal Tables, Transparent Archiving in DB2 for z/OS and IDAA
Temporal Tables, Transparent Archiving in DB2 for z/OS and IDAATemporal Tables, Transparent Archiving in DB2 for z/OS and IDAA
Temporal Tables, Transparent Archiving in DB2 for z/OS and IDAA
Cuneyt Goksu
 
Introduction to azure document db
Introduction to azure document dbIntroduction to azure document db
Introduction to azure document db
Antonios Chatzipavlis
 
Azure Data services
Azure Data servicesAzure Data services
Azure Data services
Rajesh Kolla
 
Data Integration through Data Virtualization (SQL Server Konferenz 2019)
Data Integration through Data Virtualization (SQL Server Konferenz 2019)Data Integration through Data Virtualization (SQL Server Konferenz 2019)
Data Integration through Data Virtualization (SQL Server Konferenz 2019)
Cathrine Wilhelmsen
 
What’s new in SQL Server 2017
What’s new in SQL Server 2017What’s new in SQL Server 2017
What’s new in SQL Server 2017
James Serra
 
Azure SQL Database for the SQL Server DBA - Azure Bootcamp Athens 2018
Azure SQL Database for the SQL Server DBA - Azure Bootcamp Athens 2018 Azure SQL Database for the SQL Server DBA - Azure Bootcamp Athens 2018
Azure SQL Database for the SQL Server DBA - Azure Bootcamp Athens 2018
Antonios Chatzipavlis
 
Exploring sql server 2016 bi
Exploring sql server 2016 biExploring sql server 2016 bi
Exploring sql server 2016 bi
Antonios Chatzipavlis
 

What's hot (20)

SQL Server 2014 New Features
SQL Server 2014 New FeaturesSQL Server 2014 New Features
SQL Server 2014 New Features
 
Introduction to sql database on azure
Introduction to sql database on azureIntroduction to sql database on azure
Introduction to sql database on azure
 
Sql 2016 - What's New
Sql 2016 - What's NewSql 2016 - What's New
Sql 2016 - What's New
 
How SQL Server 2016 SP1 Changes the Game
How SQL Server 2016 SP1 Changes the GameHow SQL Server 2016 SP1 Changes the Game
How SQL Server 2016 SP1 Changes the Game
 
SQL Server 2017 Enhancements You Need To Know
SQL Server 2017 Enhancements You Need To KnowSQL Server 2017 Enhancements You Need To Know
SQL Server 2017 Enhancements You Need To Know
 
Stretch db sql server 2016 (sn0028)
Stretch db   sql server 2016 (sn0028)Stretch db   sql server 2016 (sn0028)
Stretch db sql server 2016 (sn0028)
 
SQL Server 2016 Everything built-in FULL deck
SQL Server 2016 Everything built-in FULL deckSQL Server 2016 Everything built-in FULL deck
SQL Server 2016 Everything built-in FULL deck
 
Azure SQL Database & Azure SQL Data Warehouse
Azure SQL Database & Azure SQL Data WarehouseAzure SQL Database & Azure SQL Data Warehouse
Azure SQL Database & Azure SQL Data Warehouse
 
Introduction to Azure Data Lake
Introduction to Azure Data LakeIntroduction to Azure Data Lake
Introduction to Azure Data Lake
 
Azure data platform overview
Azure data platform overviewAzure data platform overview
Azure data platform overview
 
Implement SQL Server on an Azure VM
Implement SQL Server on an Azure VMImplement SQL Server on an Azure VM
Implement SQL Server on an Azure VM
 
Introducing Microsoft SQL Server 2017
Introducing Microsoft SQL Server 2017Introducing Microsoft SQL Server 2017
Introducing Microsoft SQL Server 2017
 
SQL Server 2019 Master Data Service
SQL Server 2019 Master Data ServiceSQL Server 2019 Master Data Service
SQL Server 2019 Master Data Service
 
Temporal Tables, Transparent Archiving in DB2 for z/OS and IDAA
Temporal Tables, Transparent Archiving in DB2 for z/OS and IDAATemporal Tables, Transparent Archiving in DB2 for z/OS and IDAA
Temporal Tables, Transparent Archiving in DB2 for z/OS and IDAA
 
Introduction to azure document db
Introduction to azure document dbIntroduction to azure document db
Introduction to azure document db
 
Azure Data services
Azure Data servicesAzure Data services
Azure Data services
 
Data Integration through Data Virtualization (SQL Server Konferenz 2019)
Data Integration through Data Virtualization (SQL Server Konferenz 2019)Data Integration through Data Virtualization (SQL Server Konferenz 2019)
Data Integration through Data Virtualization (SQL Server Konferenz 2019)
 
What’s new in SQL Server 2017
What’s new in SQL Server 2017What’s new in SQL Server 2017
What’s new in SQL Server 2017
 
Azure SQL Database for the SQL Server DBA - Azure Bootcamp Athens 2018
Azure SQL Database for the SQL Server DBA - Azure Bootcamp Athens 2018 Azure SQL Database for the SQL Server DBA - Azure Bootcamp Athens 2018
Azure SQL Database for the SQL Server DBA - Azure Bootcamp Athens 2018
 
Exploring sql server 2016 bi
Exploring sql server 2016 biExploring sql server 2016 bi
Exploring sql server 2016 bi
 

Viewers also liked

Onomi - MongoDB Introduction
Onomi - MongoDB IntroductionOnomi - MongoDB Introduction
Onomi - MongoDB Introduction
Onomi
 
Introduction to Couchbase: Onomi
Introduction to Couchbase: OnomiIntroduction to Couchbase: Onomi
Introduction to Couchbase: Onomi
Onomi
 
Schema Design
Schema DesignSchema Design
Schema Design
MongoDB
 
Introduction to couchbase
Introduction to couchbaseIntroduction to couchbase
Introduction to couchbaseDipti Borkar
 
SQL Server Reporting Services 2008
SQL Server Reporting Services 2008SQL Server Reporting Services 2008
SQL Server Reporting Services 2008
VishalJharwade
 
Microsoft sql server architecture
Microsoft sql server architectureMicrosoft sql server architecture
Microsoft sql server architectureNaveen Boda
 
Physical architecture of sql server
Physical architecture of sql serverPhysical architecture of sql server
Physical architecture of sql server
Divya Sharma
 
Microsoft SQL Server internals & architecture
Microsoft SQL Server internals & architectureMicrosoft SQL Server internals & architecture
Microsoft SQL Server internals & architecture
Kevin Kline
 
PEST ANALYSIS OF IT SECTOR IN INDIA
PEST ANALYSIS OF IT SECTOR IN INDIAPEST ANALYSIS OF IT SECTOR IN INDIA
PEST ANALYSIS OF IT SECTOR IN INDIA
Nitesh Singh Patel
 
Sql Server 2012
Sql Server 2012Sql Server 2012
Sql Server 2012
Performics.Convonix
 
MS-SQL SERVER ARCHITECTURE
MS-SQL SERVER ARCHITECTUREMS-SQL SERVER ARCHITECTURE
MS-SQL SERVER ARCHITECTURE
Douglas Bernardini
 
Sql server basics
Sql server basicsSql server basics
Sql server basics
VishalJharwade
 
Sql Server Basics
Sql Server BasicsSql Server Basics
Sql Server Basics
rainynovember12
 
Reporting services 2016 with labs
Reporting services 2016 with labsReporting services 2016 with labs
Reporting services 2016 with labs
Chris Testa-O'Neill
 
MS Sql Server: Introduction To Database Concepts
MS Sql Server: Introduction To Database ConceptsMS Sql Server: Introduction To Database Concepts
MS Sql Server: Introduction To Database Concepts
DataminingTools Inc
 
Ms sql server architecture
Ms sql server architectureMs sql server architecture
Ms sql server architecture
Ajeet Singh
 

Viewers also liked (16)

Onomi - MongoDB Introduction
Onomi - MongoDB IntroductionOnomi - MongoDB Introduction
Onomi - MongoDB Introduction
 
Introduction to Couchbase: Onomi
Introduction to Couchbase: OnomiIntroduction to Couchbase: Onomi
Introduction to Couchbase: Onomi
 
Schema Design
Schema DesignSchema Design
Schema Design
 
Introduction to couchbase
Introduction to couchbaseIntroduction to couchbase
Introduction to couchbase
 
SQL Server Reporting Services 2008
SQL Server Reporting Services 2008SQL Server Reporting Services 2008
SQL Server Reporting Services 2008
 
Microsoft sql server architecture
Microsoft sql server architectureMicrosoft sql server architecture
Microsoft sql server architecture
 
Physical architecture of sql server
Physical architecture of sql serverPhysical architecture of sql server
Physical architecture of sql server
 
Microsoft SQL Server internals & architecture
Microsoft SQL Server internals & architectureMicrosoft SQL Server internals & architecture
Microsoft SQL Server internals & architecture
 
PEST ANALYSIS OF IT SECTOR IN INDIA
PEST ANALYSIS OF IT SECTOR IN INDIAPEST ANALYSIS OF IT SECTOR IN INDIA
PEST ANALYSIS OF IT SECTOR IN INDIA
 
Sql Server 2012
Sql Server 2012Sql Server 2012
Sql Server 2012
 
MS-SQL SERVER ARCHITECTURE
MS-SQL SERVER ARCHITECTUREMS-SQL SERVER ARCHITECTURE
MS-SQL SERVER ARCHITECTURE
 
Sql server basics
Sql server basicsSql server basics
Sql server basics
 
Sql Server Basics
Sql Server BasicsSql Server Basics
Sql Server Basics
 
Reporting services 2016 with labs
Reporting services 2016 with labsReporting services 2016 with labs
Reporting services 2016 with labs
 
MS Sql Server: Introduction To Database Concepts
MS Sql Server: Introduction To Database ConceptsMS Sql Server: Introduction To Database Concepts
MS Sql Server: Introduction To Database Concepts
 
Ms sql server architecture
Ms sql server architectureMs sql server architecture
Ms sql server architecture
 

Similar to What's new in SQL Server 2016

Pysyvästi laadukasta masterdataa SmartMDM:n avulla
Pysyvästi laadukasta masterdataa SmartMDM:n avullaPysyvästi laadukasta masterdataa SmartMDM:n avulla
Pysyvästi laadukasta masterdataa SmartMDM:n avulla
Bilot
 
SQL Server 2016 - Always On.pptx
SQL Server 2016 - Always On.pptxSQL Server 2016 - Always On.pptx
SQL Server 2016 - Always On.pptx
QuyVo27
 
What_to_expect_from_oracle_database_12c
What_to_expect_from_oracle_database_12cWhat_to_expect_from_oracle_database_12c
What_to_expect_from_oracle_database_12c
Maria Colgan
 
Pentaho Analytics on MongoDB
Pentaho Analytics on MongoDBPentaho Analytics on MongoDB
Pentaho Analytics on MongoDB
Mark Kromer
 
BIG DATA ANALYTICS MEANS “IN-DATABASE” ANALYTICS
BIG DATA ANALYTICS MEANS “IN-DATABASE” ANALYTICSBIG DATA ANALYTICS MEANS “IN-DATABASE” ANALYTICS
BIG DATA ANALYTICS MEANS “IN-DATABASE” ANALYTICS
TIBCO Spotfire
 
BDW Chicago 2016 - Ramu Kalvakuntla, Sr. Principal - Technical - Big Data Pra...
BDW Chicago 2016 - Ramu Kalvakuntla, Sr. Principal - Technical - Big Data Pra...BDW Chicago 2016 - Ramu Kalvakuntla, Sr. Principal - Technical - Big Data Pra...
BDW Chicago 2016 - Ramu Kalvakuntla, Sr. Principal - Technical - Big Data Pra...
Big Data Week
 
The Hive Think Tank - The Microsoft Big Data Stack by Raghu Ramakrishnan, CTO...
The Hive Think Tank - The Microsoft Big Data Stack by Raghu Ramakrishnan, CTO...The Hive Think Tank - The Microsoft Big Data Stack by Raghu Ramakrishnan, CTO...
The Hive Think Tank - The Microsoft Big Data Stack by Raghu Ramakrishnan, CTO...
The Hive
 
Microsoft SQL Server 2016 - Everything Built In
Microsoft SQL Server 2016 - Everything Built InMicrosoft SQL Server 2016 - Everything Built In
Microsoft SQL Server 2016 - Everything Built In
David J Rosenthal
 
ADV Slides: The Evolution of the Data Platform and What It Means to Enterpris...
ADV Slides: The Evolution of the Data Platform and What It Means to Enterpris...ADV Slides: The Evolution of the Data Platform and What It Means to Enterpris...
ADV Slides: The Evolution of the Data Platform and What It Means to Enterpris...
DATAVERSITY
 
Commvault - Il Dato è tratto - 09.11.2017
Commvault - Il Dato è tratto - 09.11.2017Commvault - Il Dato è tratto - 09.11.2017
Commvault - Il Dato è tratto - 09.11.2017
Eurosystem S.p.A.
 
LinkedInSaxoBankDataWorkbench
LinkedInSaxoBankDataWorkbenchLinkedInSaxoBankDataWorkbench
LinkedInSaxoBankDataWorkbench
Sheetal Pratik
 
IRJET- Data Analytics & Visualization using Qlik
IRJET- Data Analytics & Visualization using QlikIRJET- Data Analytics & Visualization using Qlik
IRJET- Data Analytics & Visualization using Qlik
IRJET Journal
 
“A Distributed Operational and Informational Technological Stack”
“A Distributed Operational and Informational Technological Stack” “A Distributed Operational and Informational Technological Stack”
“A Distributed Operational and Informational Technological Stack”
Stratio
 
Data Analytics in your IoT Solution Fukiat Julnual, Technical Evangelist, Mic...
Data Analytics in your IoT SolutionFukiat Julnual, Technical Evangelist, Mic...Data Analytics in your IoT SolutionFukiat Julnual, Technical Evangelist, Mic...
Data Analytics in your IoT Solution Fukiat Julnual, Technical Evangelist, Mic...
BAINIDA
 
Balancing data democratization with comprehensive information governance: bui...
Balancing data democratization with comprehensive information governance: bui...Balancing data democratization with comprehensive information governance: bui...
Balancing data democratization with comprehensive information governance: bui...
DataWorks Summit
 
Rethink Your 2021 Data Management Strategy with Data Virtualization (ASEAN)
Rethink Your 2021 Data Management Strategy with Data Virtualization (ASEAN)Rethink Your 2021 Data Management Strategy with Data Virtualization (ASEAN)
Rethink Your 2021 Data Management Strategy with Data Virtualization (ASEAN)
Denodo
 
Data Virtualization: Introduction and Business Value (UK)
Data Virtualization: Introduction and Business Value (UK)Data Virtualization: Introduction and Business Value (UK)
Data Virtualization: Introduction and Business Value (UK)
Denodo
 
Break Free From Oracle with Attunity and Microsoft
Break Free From Oracle with Attunity and MicrosoftBreak Free From Oracle with Attunity and Microsoft
Break Free From Oracle with Attunity and Microsoft
Attunity
 
Sudhir Rawat, Sr Techonology Evangelist at Microsoft SQL Business Intelligenc...
Sudhir Rawat, Sr Techonology Evangelist at Microsoft SQL Business Intelligenc...Sudhir Rawat, Sr Techonology Evangelist at Microsoft SQL Business Intelligenc...
Sudhir Rawat, Sr Techonology Evangelist at Microsoft SQL Business Intelligenc...
Dataconomy Media
 
Organizational compliance and security in Microsoft SQL 2012-2016
Organizational compliance and security in Microsoft SQL 2012-2016Organizational compliance and security in Microsoft SQL 2012-2016
Organizational compliance and security in Microsoft SQL 2012-2016
George Walters
 

Similar to What's new in SQL Server 2016 (20)

Pysyvästi laadukasta masterdataa SmartMDM:n avulla
Pysyvästi laadukasta masterdataa SmartMDM:n avullaPysyvästi laadukasta masterdataa SmartMDM:n avulla
Pysyvästi laadukasta masterdataa SmartMDM:n avulla
 
SQL Server 2016 - Always On.pptx
SQL Server 2016 - Always On.pptxSQL Server 2016 - Always On.pptx
SQL Server 2016 - Always On.pptx
 
What_to_expect_from_oracle_database_12c
What_to_expect_from_oracle_database_12cWhat_to_expect_from_oracle_database_12c
What_to_expect_from_oracle_database_12c
 
Pentaho Analytics on MongoDB
Pentaho Analytics on MongoDBPentaho Analytics on MongoDB
Pentaho Analytics on MongoDB
 
BIG DATA ANALYTICS MEANS “IN-DATABASE” ANALYTICS
BIG DATA ANALYTICS MEANS “IN-DATABASE” ANALYTICSBIG DATA ANALYTICS MEANS “IN-DATABASE” ANALYTICS
BIG DATA ANALYTICS MEANS “IN-DATABASE” ANALYTICS
 
BDW Chicago 2016 - Ramu Kalvakuntla, Sr. Principal - Technical - Big Data Pra...
BDW Chicago 2016 - Ramu Kalvakuntla, Sr. Principal - Technical - Big Data Pra...BDW Chicago 2016 - Ramu Kalvakuntla, Sr. Principal - Technical - Big Data Pra...
BDW Chicago 2016 - Ramu Kalvakuntla, Sr. Principal - Technical - Big Data Pra...
 
The Hive Think Tank - The Microsoft Big Data Stack by Raghu Ramakrishnan, CTO...
The Hive Think Tank - The Microsoft Big Data Stack by Raghu Ramakrishnan, CTO...The Hive Think Tank - The Microsoft Big Data Stack by Raghu Ramakrishnan, CTO...
The Hive Think Tank - The Microsoft Big Data Stack by Raghu Ramakrishnan, CTO...
 
Microsoft SQL Server 2016 - Everything Built In
Microsoft SQL Server 2016 - Everything Built InMicrosoft SQL Server 2016 - Everything Built In
Microsoft SQL Server 2016 - Everything Built In
 
ADV Slides: The Evolution of the Data Platform and What It Means to Enterpris...
ADV Slides: The Evolution of the Data Platform and What It Means to Enterpris...ADV Slides: The Evolution of the Data Platform and What It Means to Enterpris...
ADV Slides: The Evolution of the Data Platform and What It Means to Enterpris...
 
Commvault - Il Dato è tratto - 09.11.2017
Commvault - Il Dato è tratto - 09.11.2017Commvault - Il Dato è tratto - 09.11.2017
Commvault - Il Dato è tratto - 09.11.2017
 
LinkedInSaxoBankDataWorkbench
LinkedInSaxoBankDataWorkbenchLinkedInSaxoBankDataWorkbench
LinkedInSaxoBankDataWorkbench
 
IRJET- Data Analytics & Visualization using Qlik
IRJET- Data Analytics & Visualization using QlikIRJET- Data Analytics & Visualization using Qlik
IRJET- Data Analytics & Visualization using Qlik
 
“A Distributed Operational and Informational Technological Stack”
“A Distributed Operational and Informational Technological Stack” “A Distributed Operational and Informational Technological Stack”
“A Distributed Operational and Informational Technological Stack”
 
Data Analytics in your IoT Solution Fukiat Julnual, Technical Evangelist, Mic...
Data Analytics in your IoT SolutionFukiat Julnual, Technical Evangelist, Mic...Data Analytics in your IoT SolutionFukiat Julnual, Technical Evangelist, Mic...
Data Analytics in your IoT Solution Fukiat Julnual, Technical Evangelist, Mic...
 
Balancing data democratization with comprehensive information governance: bui...
Balancing data democratization with comprehensive information governance: bui...Balancing data democratization with comprehensive information governance: bui...
Balancing data democratization with comprehensive information governance: bui...
 
Rethink Your 2021 Data Management Strategy with Data Virtualization (ASEAN)
Rethink Your 2021 Data Management Strategy with Data Virtualization (ASEAN)Rethink Your 2021 Data Management Strategy with Data Virtualization (ASEAN)
Rethink Your 2021 Data Management Strategy with Data Virtualization (ASEAN)
 
Data Virtualization: Introduction and Business Value (UK)
Data Virtualization: Introduction and Business Value (UK)Data Virtualization: Introduction and Business Value (UK)
Data Virtualization: Introduction and Business Value (UK)
 
Break Free From Oracle with Attunity and Microsoft
Break Free From Oracle with Attunity and MicrosoftBreak Free From Oracle with Attunity and Microsoft
Break Free From Oracle with Attunity and Microsoft
 
Sudhir Rawat, Sr Techonology Evangelist at Microsoft SQL Business Intelligenc...
Sudhir Rawat, Sr Techonology Evangelist at Microsoft SQL Business Intelligenc...Sudhir Rawat, Sr Techonology Evangelist at Microsoft SQL Business Intelligenc...
Sudhir Rawat, Sr Techonology Evangelist at Microsoft SQL Business Intelligenc...
 
Organizational compliance and security in Microsoft SQL 2012-2016
Organizational compliance and security in Microsoft SQL 2012-2016Organizational compliance and security in Microsoft SQL 2012-2016
Organizational compliance and security in Microsoft SQL 2012-2016
 

Recently uploaded

Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
James Anderson
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
DianaGray10
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
Neo4j
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
RinaMondal9
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
DianaGray10
 

Recently uploaded (20)

Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
 

What's new in SQL Server 2016

  • 1. SQL Server 2016 New Features & Business Benefits Lace Market House Nottingham NG1 1HW www.onomi.co.uk www.onomi.co.uk
  • 2. Microsoft is a market leader for….. [1] *Gartner “Magic Quadrant for Operational Database Management Systems,” by Donald Feinberg , Merv Adrian , Nick Heudecker, Adam Ronthal, October 2015 [2] *Gartner “Magic Quadrant for Business Intelligenceand Analytics Platforms,” by Rita Sallam and Josh Parenteau, February 23, 2015 [3] *Gartner “Magic Quadrant for Data Warehouse and Data Management Solutions for Analytics,” by Mark Beyer and Roxane Edjlali, February 12, 2015 This graphic was published by Gartner, Inc. as part of a larger research document and should be evaluated in the context of the entire document. The Gartner document is availableupon request from Microsoft. Gartner does not endorse any vendor, product or service depicted in its research publications, and does not advise technology users to select only those vendors with the highest ratings or other designation. Gartner research publicationsconsist of the opinions of Gartner's research organization and should not be construed as statements of fact. Gartner disclaims all warranties,expressed or implied, with respect to this research, includingany warranties of merchantability or fitness for a particular purpose. Magic Quadrant for Data Warehouse Database Management Solutions3 A leader for the fourth consecutive year Magic Quadrant for Business Intelligence and Analytics Platforms2 A leader 8 years running Magic Quadrant for Operational Database Management Systems1 Furthest in vision and ability to execute
  • 3. SQL Server 2016: Everything built-in The above graphics were published by Gartner, Inc. as part of a larger research document and should be evaluated in the context of the entire document. The Gartner document is available upon request from Microsoft. Gartner does not endorse any vendor, product or service depicted in its research publications, and does not advise technology users to select only those vendors with the highest ratings or other designation. Gartner research publications consist of the opinions of Gartner's research organization and should not be construed as statements of fact. Gartner disclaims all warranties, expressed or implied, with respect to this research, including any warranties of merchantability or fitness for a particular purpose. Consistent experience from on-premises to cloud Microsoft Tableau Oracle $120 $480 $2,230 Self-service BI per user In-memoryacrossall workloads TPC-H non-clustered results as of 04/06/15, 5/04/15, 4/15/14 and 11/25/13, respectively. http://www.tpc.org/tpch/results/tpch_perf_results.asp?resulttype=noncluster at massive scale 0 1 4 0 0 3 34 29 22 15 5 22 6 43 20 69 18 49 3 0 10 20 30 40 50 60 70 80 2010 2011 2012 2013 2014 2015 SQL Server Oracle MySQL SAP HANA TPC-H non-clustered 10TB Oracle is #5#2 SQL Server #1 SQL Server #3 SQL Server National Institute of Standards and Technology Comprehensive Vulnerability Database update 10/2015
  • 4. SQL 2016 Editions – what’s New EnterpriseStandardExp.
  • 5. SQL Server 2016 Features by Edition (General) Feature Express Standard Enterprise Maximum number of cores 4 cores 24 cores Unlimited Maximum memory utilized per instance 1 GB 128 GB OS Max Maximum size 10 GB 524 PB 524 PB Production use rights    Basic OLTP    Manageability (Management Studio, Policy-Based Management)    Basic high availability (2-node single database failover, non-readable secondary)    Enterprise data management (Master Data Services, Data Quality Services)    Advanced OLTP (In-memory OLTP, Operational analytics)    Advanced HA (Always On - multi-node, multi-db failover, readable secondary's)   
  • 6. SQL Server 2016 Features by Edition (Security, DW, Analytics & Hybrid) Feature Express Standard Enterprise Basic security (Row-level security, data masking, basic auditing, separation of duties)    Advanced security (Transparent Data Encryption, Always Encrypted)    Advanced data integration (Fuzzy grouping and look ups, change data capture)    Data warehousing (In-Memory ColumnStore, Partitioning)    Basic “R” integration (Connectivity to R Open, Limited parallelism for RRE)    Advanced “R” integration (Full parallelism for RRE)    Stretch Database   
  • 7. SQL Server 2016 Features by Edition (Business Intelligence) Feature Express Standard Enterprise Programmability & developer tools (T-SQL, CLR, Data Types, FileTable, JSON)    Basic reporting & analytics    Basic data integration (SSIS, built-in connectors)    Basic Corporate Business Intelligence (Multi-dimensional models, Basic tabular model)    Mobile BI (Datazen)    Advanced Corporate Business Intelligence (Advanced tabular model, Direct query, in-memory analytics, advanced data mining)   
  • 8. Stretch SQL Server into Azure (Stretch Database) Capability  Stretch large operational tables from on-premises to Azure with the ability to query Benefits SQL SERVER 2016 Azure Hybrid solutions Customer data Product data Order History Stretch to cloud
  • 9. JSON in SQL Server 2016 [ { "Number":"SO43659", "Date":"2011-05-31T00:00:00" "AccountNumber":"AW29825", "Price":59.99, "Quantity":1 }, { "Number":"SO43661", "Date":"2011-06-01T00:00:00“ "AccountNumber":"AW73565“, "Price":24.99, "Quantity":3 } ] Number Date Customer Price Quantity SO43659 2011-05-31T00:00:00 MSFT 59.99 1 SO43661 2011-06-01T00:00:00 Nokia 24.99 3 Table 2 JSON Formats result set as JSON text. JSON 2 table Migrates JSON text to table Built-in functions ISJSON JSON_VALUE JSON_MODIFY Performance Note: No custom type or index, stored as NVARCHAR
  • 10. Always Encrypted: How it works Help protect data at rest and in motion, on-premises and in the cloud SQL Server or SQL Database ADO .NET Name Wayne Jefferson Name 0x19ca706fbd9a Result SetResult Set Client Name SSN Country 0x19ca706fbd9a 0x7ff654ae6d USA dbo.Customers ciphertext "SELECT Name FROM Customers WHERE SSN = @SSN", 0x7ff654ae6d ciphertext "SELECT Name FROM Customers WHERE SSN = @SSN", "111-22-3333" Encrypted sensitive data and corresponding keys are never seen in plaintext in SQL Server trust boundary Security
  • 11. Always Encrypted Help protect data at rest and in motion, on-premises and in the cloud Data remains encrypted during query Capability ADO.Net client library provides transparent client-side encryption, while SQL Server executes T-SQL queries on encrypted data Benefits Apps TCE-enabled ADO .NET library SQL ServerEncrypted query Columnar key No app changes Master key Security
  • 12. Row Level Security Fine-grained access control over specific rows in a database table Help prevent unauthorized access when multiple users share the same tables, or to implement connection filtering in multitenant applications Administer via SQL Server Management Studio or SQL Server Data Tools Enforcement logic inside the database and schema is bound to the table Protect data privacy by ensuring the right access across rows SQL Database Customer 1 Customer 2 Customer 3 Security
  • 13. Row Level Security Fine-grained access control Keeping multitenant databases secure by limiting access by other users who share the same tables Application transparency RLS works transparently at query time, no app changes needed Compatible with RLS in other leading products Centralized security logic Enforcement logic resides inside database and is schema- bound to the table it protects providing greater security. Reduced application maintenance and complexity Store data intended for many consumers in a single database/table while at the same time restricting row-level read and write access based on users’ execution context.
  • 14. Data Masking Configuration made easy in the new Azure portal Policy-driven at the table and column level, for a defined set of users Data masking applied in real-time to query results based on policy Multiple masking functions available (e.g. full, partial) for various sensitive data categories (credit card numbers, SSN, etc.) SQL Database SQL Server 2016 Table.CreditCardNo 4465-6571-7868-5796 4468-7746-3848-1978 4484-5434-6858-6550 Real-time data masking; partial masking Prevent the abuse of sensitive data by hiding it from users Security
  • 15. Data Masking Regulatory compliance Sensitive data protection Agility and transparency Data is masked on the fly, with underlying data in the database remaining intact. Transparent to the application and applied according to user privilege Limit access to sensitive data by defining policies to obfuscate specific database fields, without affecting the integrity of the database.
  • 16. Enhanced AlwaysOn Availability Groups Greater scalability  Load balancing readable secondaries  Increased number of automatic failover targets  Log transport performance Improved manageability  DTC support  Database-level health monitoring  Group Managed Service Account  Domain-independent Availability Groups AG_Listener New York (Primary) Asynchronous data Movement Synchronous data Movement Unified HA solution AG Hong Kong (Secondary) AG New Jersey (Secondary) AG
  • 17. Enhanced AlwaysOn Availability Groups Load balancing in readable secondary's Computer5 DR site Computer2 Computer3 Computer4 Primary site Computer1 (Primary) READ_ONLY_ROUTING_LIST= (('COMPUTER2', 'COMPUTER3', 'COMPUTER4'), 'COMPUTER5')  In SQL 2014, read-only transactions routed by the Listener went to the first secondary that was available  Read-only Routing (ROR) lists  Now you can configure the ROR lists to round-robin among a specific set of secondary's (for each primary) Availability
  • 18. Polybase view in SQL Server 2016  Execute T-SQL queries against relational data in SQL Server and ‘semi-structured’ data in HDFS and/or Azure  Leverage existing T-SQL skills and BI tools to gain insights from different data stores  Expand the reach of SQL Server to Hadoop(HDFS)
  • 19. Revolution R Enterprise & SQL Big data analytics platform Based on open source R High-performance, scalable, full-featured Statistical and machine-learning algorithms are performant, scalable, and distributable Write once, deploy anywhere Scripts and models can be executed on a variety of platforms, including non-Microsoft (Hadoop, Teradata in-DB) Integration with the R Ecosystem Analytic algorithms accessed via R function with similar syntax for R users. Arbitrary R functions/packages can be used in conjunction
  • 20. Real-time operational analytics – In Memory 0100101010110 In-memory ColumnStore In-memory OLTP Real-time business problem detection  Up to 30x faster transactions with in-memory OLTP  Queries from minutes to seconds  Real-time operational analytics
  • 21. Mobile BI for SQL Server Business insights through rich visualizations on any device Native apps for Windows, iOS and Android  Create once and publish to any device  Access your data from anywhere  Custom branding  Touch-optimized data exploration and perfect scaling to any screen form-factor  Collaborate with colleagues on the go

Editor's Notes

  1. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  2. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  3. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  4. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  5. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  6. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  7. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  8. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  9. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  10. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  11. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  12. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  13. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  14. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  15. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  16. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  17. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  18. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  19. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  20. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.
  21. SQL Server 2014 is the data platform for the modern business. SQL Server offers small and midsize organizations a fast, highly available database—and a cloud-ready data platform that will grow with your business. SQL Server 2014 dramatically speeds transactions with new in-memory capabilities. Cloud capabilities make it easy for your organization to choose where to deploy your applications—whether on-premises, in the cloud, or a combination of both.