10 New Features Worth Exploring in SQL Server 2016

There is a lot of buzz around SQL Server 2016.  Microsoft announced the release of SQL Server 2016 at the Microsoft Ignite Conference during the first week of May 2015. Since that time a number of Community Technical Previews (CTPs) have come out.  It will not be too long until SQL Server 2016 will be fully baked and ready for shipping.  While Microsoft SQL Server development team puts the final touches on SQL Server 2016 I’ve been reviewing some of the new features.  As always there are a ton of new features and this article cannot cover all of them.  In this article I will be exploring, at a very high level, 10 of those new features.

Always Encrypted

With the Always Encrypted feature enabled your SQL Server data will always be encrypted within SQL Server. Access to encrypted data will only be available to the applications calling SQL Server.  Always Encrypted enables client application owners to control who gets access to see their applications confidential data.  It does this by allowing the client application to be the one that has the encryption key.  That encryption key is never passed to SQL Server. By doing this you can keep those nosey Database or Windows Administrators from poking around sensitive client application data In-Flight or At-Rest. This feature will now allow you to sleep at night knowing your confidential data stored in a cloud managed database is always encrypted and out of the eyes of your cloud provider.

Dynamic Data Masking

If you are interested in securing your confidential data so some people can see it, while other people get an obscured version of confidential data then you might be interested in dynamic data masking.  With dynamic data masking you can obscure confidential columns of data in a table to SQL Server for users that are not authorized to see the all the data.  With dynamic data masking you can identify how the data will be obscured.  For instance say you accept credit card numbers and store them in a table, but you want to make sure your help desk staff is only able to see the last four digits of the credit card number. By setting up dynamic data masking you can define a masking rules so unauthorized logins can only read the last four digits of a credit card number, whereas authorized logins can see all of the credit card information.

JSON Support

JSON stands for Java Script Object Notation.  With SQL Server 2016 you can now interchange JSON data between applications and the SQL Server database engine.  By adding this support Microsoft has provided SQL Server the ability to parse JSON formatted data so it can be stored in a relation format.  Additionally, with JSON support you can take relational data, and turn it into JSON formatted data.  Microsoft has also added some new functions to provided support for querying JSON data stored in SQL Server. Having these additional JSON features built into SQL Server should make it easier for applications to exchange JSON data with SQL Server.   

Multiple TempDB Database Files

It has been a best practice for a while to have more than one tempdb data file if you are running on a multi-core machine.  In the past, up through SQL Server 2014, you always had to manually add the additional tempdb data files after you installed SQL Server. With SQL Server 2016 you can now configure the number of tempdb files you need while you are installing SQL Server.  Having this new feature means you will no longer need to manually add additional tempdb files after installing SQL Server.  

PolyBase

PolyBase allows you to query distributed data sets.  With the introduction of PolyBase you will be able to use Transact SQL statements to query Hadoop, or SQL Azure blob storage.  By using PolyBase you can now write adhoc queries to join relational data from SQL Server with semi-structured data stored in Hadoop, or SQL Azure blob storage.  This allows you to get data from Hadoop without knowing the internals of Hadoop.  Additionally you can leverage SQL Server’s on the fly column store indexing to optimize your queries against semi-structured data.    As organizations spread data across many distributed locations, PolyBase will be a solution for them to leverage SQL Server technology to access their distributed semi-structured data. 

Query Store

If you are into examining execution plans than you will like the new Query Store feature.  Currently in versions of SQL Server prior to 2016 you can see existing execution plans by using dynamic management views (DMVs).  But, the DMVs only allow you to see the plans that are actively in the plan cache.  You can’t see any history for plans once they are rolled out of the plan cache.  With the Query Store feature, SQL Server now saves historical execution plans.  Not only that but it also saves the query statistics that go along with those historical plans.   This is a great addition and will allow you to now track execution plans performance for your queries over time.    

Row Level Security

With Row Level Security the SQL database engine will be able to restrict access to row data, based on a SQL Server login.   Restricting rows will be done by filter predicates defined in inline table value function.  Security policies will ensure the filter predicates get executed for every SELECT or DELETE operation.   Implementing row level security at the database layer means application developers will no longer need to maintain code to restrict data from some logins, while allowing other logins to access all the data.  With this new feature, when someone queries a tables that contains row level security they will not even know whether or not any rows of data were filtered out.

R Comes to SQL Server

With Microsoft’s purchase of Revolution Analytics they are now able to incorporate R to support advance analytics against big data right inside of SQL Server. By incorporating R processing into SQL Server, data scientists will be able to take their existing R code and run it right inside the SQL Server database engine.  This will eliminate the need to export your SQL server data in order to perform R processing against it.  This new feature brings R processing closer to the data.

Stretch Database

The Stretch Database feature provides you a method to stretch the storage of your On-Premise database to Azure SQL Database.  But having the stretch database feature allows you to have your most frequently accessed data stored On-Premise, while your less accessed data is off-site in an Azure SQL databases.  When you enable a database to “stretch” the older data starts moving over to the Azure SQL database behind the scenes.  When you need to run a query that might access active and historical information in a “stretched” database the database engine seamlessly queries both the On-Premise database as well as Azure SQL database and returns the results to you as if they had come from a single source.  This feature will make it easy for DBA’s to archive information to a cheaper storage media without having to change any actual application code.  By doing this you should be able to maximize performance on those active On-Premise queries.

Temporal Table

A temporal table is table that holds old versions of rows within a base table.  By having temporal tables SQL Server can automatically manage moving old row versions to the temporal table every time a row in the base table is updated.  The temporal table is physically a different table then the base table, but is linked to the base table.  If you’ve been building or plan to build your own method to managing row versioning then you might want to check out the new temporal tables support in SQL server 2016 before you go forth and build your own row versioning solution.

Where You Can Get Additional Information

Below are some additional resources that you can use to find out more information about SQL Server 2016.

SQL Server 2016 data sheet: http://download.microsoft.com/download/F/D/3/FD33C34D-3B65-4DA9-8A9F-0B456656DE3B/SQL_Server_2016_datasheet.pdf

SQL Server 2016 release notes: https://msdn.microsoft.com/en-US/library/dn876712.aspx

What’s new in SQL Server, September Update: https://msdn.microsoft.com/en-US/library/bb500435.aspx

Summary

SQL Server 2016 has many new features.  Some of features are enhancements to existing features, while others are entirely new features.   In this article I only explored some of the new functionality in SQL Server 2016.   When moving to SQL Server 2016 you should exploit those new features that provide value to your SQL Server environment.  

See all articles by Greg Larsen

Gregory Larsen
Gregory Larsen
Gregory A. Larsen is a DBA at Washington State Department of Health (DOH). Greg is responsible for maintaining SQL Server and other database management software. Greg works with customers and developers to design and implement database changes, and solve database/application related problems. Greg builds homegrown solutions to simplify and streamline common database management tasks, such as capacity management.

Get the Free Newsletter!

Subscribe to Cloud Insider for top news, trends & analysis

Latest Articles