New Features Added in SQL Server

New Features Added in SQL Server

New Features Added in SQL Server

This post helps you in quickly reviewing the “New Features Added in SQL Server” from 2008 to 2016. The most common interview question is “What are the new features added in SQL Server XXXX?” To simplify the answer we are just giving the single line abbreviations. While preparing for an interview just have a quick look and try to remember 4 to 5 features on current working and last released version. Let’s say you are currently working on 2012 then you need to look for 2012 and 2008 R2.   Also people would expect you to know few new features added in the latest version which is SQL Server 2016. Features are categorised for DBA, Developer and Security. That doesn’t mean that SQL Developer need not look into DBA section or vice versa. This is just to make it more readable, when a feature is more related to Developer we added in Developer section when a feature is more relevant administration part it will be in DBA section. Believe this will be helpful for a quick review for version wise feature support.

 

New Features Added in SQL Server 2008

 

SQL DBA:

Activity Monitor: Great tool to showcase resource utilization and performance using GUI.

Policy Based Management: The ability to manage standards on multiple servers

Enhanced Database Mirroring: Automatic data page repair and compressing outgoing log stream

Resource Governor: We can configure it to control SQL Server resource utilization and workload.

External Key Management: Provides a comprehensive solution for encryption and key management.

Hot Add CPU: Adding resources online without downtime.

PowerShell: SQL Server 2008 ships with PowerShell snap-in built on .Net framework 2.0.

Table Compression: Compress data and index pages to save memory and I/O.

Backup Compression: Native backup compression.

Performance data collection: Centralized data repository for storing and reporting performance data

Extended Events: Event collection is easier now compares to running a trace

 

SQL Developer:

Continue reading

Posted in Interview Q&A, SQL Development, SQL Server DBA | Tagged , , , , , , , | 8 Comments

Microsoft Acquiring LinkedIn

Microsoft Acquiring LinkedIn

Microsoft Acquiring LinkedIn

I am very excited to see the news “Microsoft Acquiring LinkedIn” on Monday morning. I have been working on Microsoft products from last 10 years and I love LinkedIn. “Satya Nadella” (the man of inspiration who made Indians proud especially “Telugu” people) announced the news on one of the video from Microsoft website.

Satya Nadella” has made a first biggest deal as the Microsoft CEO. I believe this is the fantastic step by Microsoft and this is a big deal as Microsoft will be acquiring the world’s largest and the biggest professional social network LinkedIn for $26.2 billion, $196 per share.

Satya Nadella said

“The LinkedIn team has grown a fantastic business cantered on connecting the world’s professionals, I have always had a great admiration for LinkedIn, I have been talking with Reid and Jeff for a while … I have been thinking about this for a long time.”

By this deal Microsoft targeted Organization Growth by integrating Microsoft Office Business suite users with LinkedIn and Targeted advertising.

Jeff Weiner will continue as a CEO for LinkedIn and reports to Satya Nadella. LinkedIn shares surged 47 percent after the announcement on Monday to near $193, Microsoft’s stock was down 3.2 percent.

The deal has been approved by boards from both the companies and it is expected to be closed by end of 2016.

Microsoft Acquiring LinkedIn

Posted in Miscellaneous | Tagged , , | 1 Comment

Search for an Object in SQL Server

Search for an Object in SQL Server

This article helps you in understanding how to Search for an object in SQL Server using T-SQL script. When we need to search for an object inside a database we can do that using sys.objects but when it comes to cross database search that needs a solution. There are different ways to search for an object in SQL Server:

  • T-SQL Script: A native T-SQL script.
  • Object Explorer Search: User required proper permissions to use this
  • Red Gate SQL Search: It’s not always possible installing freeware on enterprise environments
  • SSMS Tools Pack Add-in: An extra tool has to be added to SSMS

Why Instance level object search is required?

There are few cases where we search for objects across the instance.

Continue reading

Posted in SQL Development, SQL Scripts, SQL Server DBA | Tagged , , , , , , , , , | 4 Comments