For SQL 2014/2016:
Concise guide here:
SQLMint
Click here for the download link for Microsoft SQL Server Data Tools – Business Intelligence for Visual Studio 2013 – this installs Microsoft SQL Server Data Tools Business Intelligence project templates for Analysis Services, Integration Services, and Reporting Services that support Visual Studio 2013, SSIS 2012/2014 etc.
“A contained database is a database that is isolated from other databases and from the instance of SQL Server that hosts the database. SQL Server 2014 helps user to isolate their database from the instance in 4 ways.
MSDN Source reference – click here
T-SQL Code
EXEC sys.sp_configure N’contained database authentication’, N’1′
GO
RECONFIGURE WITH OVERRIDE
GO
USE [master]
GO
ALTER DATABASE [MyDemoDB] SET CONTAINMENT = PARTIAL WITH NO_WAIT
GO
Running the SQL Server 2014 upgrade advisor is a good idea when say planning an in-place upgrade from a previous version of SQL Server.
To do this, run setup from the installation disc, go to planning, run install upgrade advisor.
You might get a pop up such as below, this is resolved by downloading and installing the SQL 2014 feature pack components from this link. Click here.
Below are reference links to Microsoft documentation web pages listing deprecated database features from SQL 2005 to SQL 2014….
2005 http://msdn.microsoft.com/en-us/library/ms143729(v=sql.90).aspx
2008 http://msdn.microsoft.com/en-us/library/ms143729(v=sql.100).aspx
2012 http://technet.microsoft.com/en-us/library/ms143729(v=sql.110).aspx
2014 http://msdn.microsoft.com/en-us/library/ms143729(v=sql.120).aspx
Click here for TechEd North America 2014 Video Prep Sessions now available online.