Thursday 17 November 2016

MS SQL 2016 just got a whole lot cooler....

MS SQL 2016 SP1 has arrived! Hurrah I hear you say...

Those nice people at Microsoft have given the standard edition a whole load of extra benefits which previously only on the enterprise edition of MS SQL server.

The following table compares the list of features which were only available in Enterprise edition which are now enabled in Standard, Web, Express, and LocalDB editions with SQL Server 2016 SP1



Think my fav new addition is the Database clone command! Troubleshoot our production databases by cloning the schema and metadata, statistics without the data.

 –– Default CLONE WITH SCHEMA, STATISTICS and QUERYSTORE metadata.
DBCC CLONEDATABASE  (source_database_name, target_database_name) 

–– SCHEMA AND QUERY STORE ONLY CLONE
DBCC CLONEDATABASE  (source_database_name, target_database_name) WITH NO_STATISTICS                                 


–– SCHEMA AND STATISTICS ONLY CLONE
DBCC CLONEDATABASE  (source_database_name, target_database_name) WITH NO_QUERYSTORE 


 –– SCHEMA ONLY CLONE
DBCC CLONEDATABASE  (source_database_name, target_database_name) WITH NO_STATISTICS,NO_QUERYSTORE   


Download SP1

No comments:

Post a Comment

Note: only a member of this blog may post a comment.