Top 10 Exciting New Features of SQL Server 2012

In this tutorial I will discuss 10 exciting new features related to developer and SQL Server enhancements. If you've implemented Column Store Indexes, Sequence Objects and a BI solution or are interested in implementing one, you should seriously consider upgrading to SQL Server 2012. These new features will lead to projects with a shorter completion time, faster performance and so on.

I've listed my top 10 favorite SQL Server 2012 features and improvements.

  1. Column Store Indexes
  2. Business Intelligence
  3. Sequence Objects
  4. Windows Server Core Support
  5. Pagination
  6. Error Handling
  7. New T-SQL Functions
  8. Enhanced Execute Keyword with WITH RESULT SETS
  9. User-Defined Server Roles
  10. Metadata Discovery Enhancements
So let's start with the first 10 top features. 

1. Column Store Indexes

SQL Server 2012 introduced a new feature Column store indexes that can be used to improve query performance. It is used in data warehousing. You can get this feature when you right-click on the indexes folder as "Non-Clustered Column store Index", as shown in the following figure. The column storage is the ability to read the values of a specific column of a table without having to read the values of all the other columns. In row-oriented storage this is impossible because the individual column values are physically stored grouped in rows on the pages and reading a page in order to read a column value must fetch the entire page in memory.

Business Intelligence

Creating Column store indexes programmatically

Syntax

CREATE NONCLUSTERED COLUMNSTORE INDEX <IndexName> ON <TableName>(Col1,Col2,....Coln) 

Example

  1. CREATE NONCLUSTERED INDEX INDEX_1 ON PersonalDetail(ID, Name)  

2. Business Intelligence

In SQL Server 2012 Microsoft introduced a new model called Business Intelligence Semantic Model (BISM) to support a broad range of reporting and analysis needs. BISM is a relational model. That supports two type of model that meet most of your reporting and analysis needs.

  1. Multidimensional Model
  2. Tabular model



Most users are familiar with working with tables and relationships and quickly learn to implement business logic using the Excel like Data Analysis Expressions (DAX) language. It is is built on your existing relational model, making it faster, easier to use and quicker to develop than the multidimensional model. If If you require complex modeling, business logic, or security, or if you need a very large scale solution, multidimensional modeling may be the best solution for your needs.

3. Sequence Objects

To create a sequence of a number in the past, we have used options of IDENTITY. But in SQL Server 2012, there is an interesting option to utilize called Sequence. Sequence is a user-defined object that creates a sequence of a number. It has similar functionality to an identity column. You can create it with SQL Server Management Studio or T-SQL.

Creating Sequence

The following syntax creates a Sequence object:

  1. CREATE SEQUENCE [schema_name . ] sequence_name  
  2. AS [ built_in_integer_type | user-defined_integer_type ] ]  
  3. [ START WITH <constant> ]  
  4. [ INCREMENT BY <constant> ]  
  5. [ { MINVALUE [ <constant> ] } | { NO MINVALUE } ]  
  6. [ { MAXVALUE [ <constant> ] } | { NO MAXVALUE } ]  
  7. [ CYCLE | { NO CYCLE } ]  
  8. [ { CACHE [ <constant> ] } | { NO CACHE } ]  
  9. [ ; ] 
  • START WITH: Starting number in the sequence
  • INCREMENT BY: The incrementing value of the sequence
  • MINVALUE: The minimum value the sequence can produce.
  • MAXVALUE: The maximum value the sequence can produce.
  • CYCLE: If the MAXVALUE is set with the CYCLE, when the MAXVALUE is reached the sequence will cycle to the MINVALUE and start again.
  • CACHE: If a CACHE argument is provided, SQL Server will cache (store in memory) the amount of values specified.

Example

Now let's create a sequence similar to an identity column with 1 as increment.

  1. CREATE SEQUENCE dbo.TestSequence AS BIGINT  
  2. START WITH 5  
  3. INCREMENT BY 1  
  4. MINVALUE 2  
  5. MAXVALUE 9  
  6. CYCLE  
  7. CACHE 10; 

Now creating a table.

  1. CREATE table TABLEsequenceTest  
  2. (  
  3. ID INT,  
  4. Name nvarchar(100) NOT NULL  

NEXT VALUE FOR

The new NEXT VALUE FOR T-SQL keyword is used to get the next sequential number from a Sequence.

Now insert some data into the table.

  1. INSERT TABLEsequenceTest (ID, Name)VALUES (NEXT VALUE FOR TestSequence, 'Jimmy');  
  2. INSERT TABLEsequenceTest (ID, Name)VALUES (NEXT VALUE FOR TestSequence, 'Rahul Kumar');  
  3. INSERT TABLEsequenceTest (ID, Name)VALUES (NEXT VALUE FOR TestSequence, 'Manish');  
  4. INSERT TABLEsequenceTest (ID, Name)VALUES (NEXT VALUE FOR TestSequence, 'Jimmy');  
  5. INSERT TABLEsequenceTest (ID, Name)VALUES (NEXT VALUE FOR TestSequence, 'Rahul Kumar');  
  6. INSERT TABLEsequenceTest (ID, Name)VALUES (NEXT VALUE FOR TestSequence, 'Manish');  
  7. INSERT TABLEsequenceTest (ID, Name)VALUES (NEXT VALUE FOR TestSequence, 'Jimmy'); 

Now use the select statement to see the table data:

  1. SELECT * FROM TABLEsequenceTest 

The results would look like this:



In the preceding image the maxvalue is 9. When the MAXVALUE is reached the sequence will cycle to the MINVALUE(2) and start again.

Relate Sequence object to a table

In this example we see how to relate a Sequence object to a table. We have already created a sequence named TestSequence. Now create a new table to define a sequence as an Identity column with the table; see:
  1. CREATE TABLE TABLEsequenceTest2  
  2. (  
  3.   Id       INT default (next value for dbo.TestSequence),  
  4.   Name   VARCHAR(50) NOT NULL  

Now insert some data into the table:

  1. INSERT TABLEsequenceTest2 (Name)VALUES ('Jimmy');  
  2. INSERT TABLEsequenceTest2 (Name)VALUES ('Rahul Kumar');  
  3. INSERT TABLEsequenceTest2 (Name)VALUES ('Manish'); 

Now use a select statement to see the table data:

  1. SELECT * FROM TABLEsequenceTest2 

The results would look like this:



To delete a sequence using Drop keyword

DROP SEQUENCE TestSequence

Resetting Sequence using Alter keyword

Argument 'START WITH' cannot be used in an ALTER SEQUENCE statement. Restart with is used instead of start with.
  1. Alter SEQUENCE dbo.TestSequence  
  2. RESTART WITH 2  
  3. INCREMENT BY 1  
  4. MINVALUE 2  
  5. MAXVALUE 9  
  6. CYCLE  
  7. CACHE 10;  
  8. GO 

To see all sequences available in a database

  1. SELECT * FROM SYS.SEQUENCES 

Now press F5 to see all the sequences available in a database, as in:



Difference between Sequence and Identity

A Sequence object is similar in function to an identity column. But a big difference is:
  • Identity: A value retrieved from an Identity is tied to a specific table column.
  • Sequence: A value retrieved from a Sequence object is not tied to a specific table column. That means one Sequence number can be used across multiple tables.

4. Windows Server Core Support

The Windows Server Core has been around since Windows Server 2008. But could not do so because it wasn't officially supported. It is supported in SQL Server 2012. This is also a important new feature of SQL Server 2012. when we run a previous version of SQL Server on Windows Server Core always seemed difficult. SQL Server 2012's support for Windows Server Core enables leaner and more efficient SQL Server installations and also reduces potential attack vectors and the need for patching. So when we talk about SQL Server we would love to run it over an operating system with minimal features enabled. Windows Server Core is designed for infrastructure applications such as SQL Server that provide back-end services but don't need a GUI on the same server. That means It is a GUI-less version of the Windows operating system.

5. Pagination

In the earlier versions of SQL Server, if you use a GridView then you set its pagination property. However if you want to do this from the server side then you need to use the row_number() function and supply the specific range of rows and also retrieve the current page data from the database using a temp table. The ORDER BY OFFSET and FETCH NEXT ONLY keywords are one of the major features introduced in SQL Server 2012.

Creating a Table in SQL Server
  1. Create TABLE UserDetail  
  2. (  
  3. User_Id int NOT NULL IDENTITY(1,1),  
  4. FirstName varchar(20),  
  5. LastName varchar(40) NOT NULL,  
  6. Address varchar(255),  
  7. PRIMARY KEY (User_Id)  
  8. )  
  9.   
  10. INSERT INTO UserDetail(FirstName, LastName, Address)  
  11. VALUES ('Smith''Kumar','Capetown'),  
  12. ('Crown''sharma','Sydney'),  
  13. ('Copper''verma','Jamaica'),  
  14. ('lee''verma','Sydney'),  
  15. ('Rajesh''Kumar','India'),  
  16. ('Rahu''sharma','India'),  
  17. ('Ravi''verma','Jamaica'),  
  18. ('Leon''verma','Sydney'),  
  19. ('Methews''Anglo','Srilanka'),  
  20. ('Ben''lon','Newzealand'),  
  21. ('Derrin''summy','Jamaica')  
  22. go  
  23.   
  24. SELECT * FROM [master].[dbo].[UserDetail] 
The table looks as in the following:
 


In SQL Server 2008

In SQL Server 2005/2008, we have been doing this data paging by writing a Stored Procedure or a complex query. Here is a sample of how we were using data paging in SQL Server 2005/2008 using the row_number function with an order by clause:
  1. SELECT *  
  2. FROM (  
  3. SELECT ROW_NUMBER() OVER(ORDER BY User_Id) AS number, *  
  4. FROM userdetail) AS TempTable  
  5. WHERE number > 0 and number <= 4 

The ROW_NUMBER function enumerates the rows in the sort order defined in the over clause.

Now using OFFSET and FETCH NEXT Keywords

OFFSET Keyword:  If we use offset with the order by clause then the query will skip the number of records we specified in OFFSET n Rows.

  1. Select *  
  2. from userdetail  
  3. Order By User_Id  
  4. OFFSET 5 ROWS 

In the preceding example, we used OFFSET 5 ROWS, so SQL will skip the first 5 records from the result and display the rest of all the records in the defined order. Now select the query and press F5 to execute the query:

Output



FETCH NEXT Keywords
: When we use Fetch Next with an order by clause only, without Offset then SQL will generate an error.
  1. SELECT *  
  2. FROM userdetail  
  3. ORDER BY User_Id  
  4. --OFFSET 5 ROWS  
  5. FETCH NEXT 10 ROWS ONLY

Output



ORDER BY OFFSET and FETCH NEXT 

In this example, query guides how to use both ORDER BY OFFSET and FETCH NEXT with a select statement for creating paging in SQL Server 2012.
  1. SELECT *  
  2. FROM userdetail  
  3. ORDER BY User_Id  
  4. OFFSET 5 ROWS  
  5. FETCH NEXT 8 ROWS ONLY

Output



Paging with Stored Procedure

In this example we are creating a Stored Procedure with both an ORDER BY OFFSET and FETCH NEXT keyword to enhancement the paging in SQL Server 2012.
  1. CREATE PROCEDURE TestPaging  
  2. (  
  3.   @PageNumber INT,  
  4.   @PageSize INT  
  5. )  
  6. AS  
  7. DECLARE @OffsetCount INT  
  8. SET @OffsetCount = (@PageNumber-1)*@PageSize  
  9. SELECT  *  
  10. FROM [UserDetail]  
  11. ORDER BY [User_Id]  
  12. OFFSET @OffsetCount ROWS  
  13. FETCH NEXT @PageSize ROWS ONLY 

Now execute the Stored Procedure and provide the page number and page size to test paging. 

EXECUTE TestPaging 1,5

In the preceding query:

1: This is for the first page
5: Number of records to display on the page

Output



EXECUTE TestPaging 2,5

In the preceding query:

2: This is for the second page
5: Number of records to display on the page

Output
 


6. Error Handling

If you have programmed in languages like C# or other similar languages then you are probably familiar with the try, catch and throw statements. Transact-SQL also gives you this option to find an exception using a try/catch block. In SQL Server 2005/2008, RAISERROR has remained the only mechanism for generating your own errors. In SQL Server 2012, a new THROW statement is used to raise exceptions in your T-SQL code instead of RAISERROR. So let's have a look at a practical example. The example is developed in SQL Server 2012 using the SQL Server Management Studio. 

In SQL Server 2005/2008

In SQL Server 2005/2008, if you want to re-throw an error in a catch block of a TRY CATCH statement, you need to use RAISERROR with ERROR_MESSAGE() and ERROR_SEVERITY(). But in SQL Server 2012 you can use only a THROW statement to re-throw an error in a catch block of a TRY CATCH statement.

Example 1

In this example we use a select statement in a try block. If there is an error in a try block then it will throw the error to the catch block. The following is a sample T-SQL script with exception handling in SQL Server 2008:
  1. BEGIN TRY  
  2. select from UserDetail -- select statement error  
  3.  END TRY  
  4.  BEGIN CATCH  
  5. DECLARE @ErrorMessage nvarchar(4000), @ErrorSeverity int  
  6. SELECT @ErrorMessage = ERROR_MESSAGE(), @ErrorSeverity = ERROR_SEVERITY()  
  7. RAISERROR (@ErrorMessage, @ErrorSeverity, 1 )  
  8.  END CATCH  

Now press F5 to execute it; the results will be:



Example 2

We divide a number by zero:
  1. BEGIN TRY  
  2. DECLARE @VALUE INT  
  3. SET @VALUE = 12/ 0  
  4.  END TRY  
  5.  BEGIN CATCH  
  6. DECLARE @ErrorMessage nvarchar(4000), @ErrorSeverity int  
  7. SELECT @ErrorMessage = ERROR_MESSAGE(), @ErrorSeverity = ERROR_SEVERITY()  
  8. RAISERROR ( @ErrorMessage, @ErrorSeverity, 1 )  
  9.  END CATCH  

Now press F5 to execute it; the results will be:



Now using a THROW statement instead of a RAISERROR:
  1. BEGIN TRY  
  2. select * from UserDetail  
  3. END TRY  
  4. BEGIN CATCH  
  5. throw  
  6. END CATCH  

Now press F5 to execute it.



In SQL Server 2012

In SQL Server 2012, THROW can appear only inside a CATCH block. In SQL Server 2012 you can only use a THROW statement in a catch block when an unexpected error occurs in a TRY block. A new THROW statement is used to raise exceptions in your T-SQL code instead of RAISERROR. In SQL Server 2012, by using the Throw keyword, the preceding script will be changed to this:

Example 1 ( Using THROW Statement)
  1. BEGIN TRY     
  2. select from UserDetail -- select statement error  
  3.  END TRY    
  4.  BEGIN CATCH   
  5.  throw  
  6.  END CATCH 

Now press F5 to execute it; the results will be:



Example 2 ( Using THROW Statement)

We divide a number by zero. A THROW statement is used to raise exceptions; see:
  1. BEGIN TRY   
  2.    DECLARE @VALUE INT   
  3.    SET @VALUE = 12/ 0   
  4.  END TRY    
  5.  BEGIN CATCH   
  6.   throw   
  7.  END CATCH   

Now press F5 to execute it; the results will be:

 

7. Programmability Enhancements: New T-SQL Functions

There are many new new functions added to SQL Server 2012.  In this article I have described all the functions listed below.

Logical Functions

  1. CHOOSE (Transact-SQL)
  2. IIF (Transact-SQL)

Conversion Functions

  1. PARSE (Transact-SQL)
  2. TRY_PARSE (Transact-SQL)
  3. TRY_CONVERT (Transact-SQL)

Date and time Functions

  1. DATEFROMPARTS Function
  2. TIMEFROMPARTS Function
  3. DATETIMEFROMPARTS Function
  4. EMONTH Function .. and so on

String Functions

  1. FORMAT (Transact-SQL)
  2. CONCAT (Transact-SQL)

Analytic Functions

  1. First_Value Function
  2. Last_Value Function

So let's have a look at a practical example of all the new SQL Server functions. The example is developed in SQL Server 2012 using the SQL Server Management Studio.

First now start with Logical Functions.

Logical Function

IIF() Function

The IIF function is used to check a condition. Suppose X>Y. In this condition a is the first expression and b is the second expression. If the first expression evaluates to TRUE then the first value is displayed, if not the second value is displayed.

Syntax


IIF ( boolean_expression, true_value, false_value )

Example

  1. DECLARE @X INT;  
  2. SET @X=50;  
  3. DECLARE @Y INT;  
  4. SET @Y=60;  
  5. Select iif(@X>@Y, 50, 60) As IIFResult  

In this example X=50 and Y=60; in other words the condition is false.  Select iif(@X>@Y, 50, 60) As IIFResult returns false value that is 60.

Output



Choose() Function

This function returns a value out of a list based on its index number. You can think of it as an array kind of thing. The Index number here starts from 1.

Syntax

CHOOSE ( index, value1, value2.... [, valueN ] )

CHOOSE() Function excepts two parameters,
  • Index: Index is an integer expression that represents an index into the list of the items. The list index always starts at 1. 
  • Value: List of values of any data type.
Facts related to the Choose Function

The following are some facts related to the Choose Function.
  1. Item index starts from 1
    1. DECLARE @ShowIndex INT;  
    2. SET @ShowIndex =5;  
    3. Select Choose(@ShowIndex, 'M','N','H','P','T','L','S','H'As ChooseResult  
    In the preceding example we use index=5. It will start at 1. Choose() returns T as output since T is present at @Index location 5.

    Output


     
  2. When passed a set of types to the function it returns the data type with the highest precedence; see:
    1. DECLARE @ShowIndex INT;  
    2. SET @ShowIndex =5;  
    3. Select Choose(@ShowIndex ,35,42,12.6,14,15,18.7)  As CooseResult 
    In this example we use index=5. It will start at 1. Choose() returns 15.0 as output since 15 is present at @ShowIndex location 5 because in the item list, fractional numbers have higher precedence than integers.


     
  3. If an index value exceeds the bound of the array it returns NULL
    1. DECLARE @ShowIndex INT;  
    2. SET @ShowIndex =9;  
    3. Select Choose(@ShowIndex , 'M','N','H','P','T','L','S','H')  As CooseResult  
    In this example we use index=9. It will start at 1. Choose() returns Null as output because in the item list the index value exceeds the bounds of the array; the last Index=8.

    Output


     
  4. If the index value is negative then that exceeds the bounds of the array therefore it returns NULL; see:
    1. DECLARE @ShowIndex INT;  
    2. SET @ShowIndex =-1;  
    3. Select Choose(@ShowIndex, 'M','N','H','P','T','L','S','H')  As CooseResult 
    In this example we use index= -1. It will start at 1. Choose() returns Null as output because in the item list the index value exceeds the bounds of the array.

    Output


     
  5. If the provided index value has a float data type other than int, then the value is implicitly converted to an integer; see:
    1. DECLARE @ShowIndex  INT;  
    2. SET @ShowIndex =4.5;  
    3. Select Choose(@ShowIndex ,35,42,12.6,13,15,20) As CooseResult 
    In this example we use index= 4.5. It will start at 1. If the specified index value has a float data type other than int, then the value is implicitly converted to an integer. It returns the 13.0 as output since 15 is present at @ShowIndex=4.5 that means index is 4.

    Output


Conversion Functions

  1. Parse Function

    This function converts a string to Numeric and Date and Time formats. It will raise an error if translation isn't possible. You may still use CAST or CONVERT for general conversions. It depends on the presence of the CLR.

    Syntax


    To demonstrate this new conversion function the following defines the syntax:

    PARSE ( string_value AS data_type [ USING culture ] )

    The Parse Function contains three parameters. The Culture part of the function is optional.

    string_value:
     String value to parse into the Numeric and Date and Time format.
    data_type: 
    Returns data type, numeric or datetime type.
    culture
    : Culture part of the function is optional. A language (English, Japanese, Spanish, Danish, French and so on) to be used by SQL Server to interpret data. A culture can be specified if needed; otherwise, the culture of the current session is used. Culture can be any of the .NET supported cultures, not limited to those supported by SQL Server.

    For Example


    In this example we see the parse function with Cast and Convert functions. Execute the following to convert a string value to datetime using CAST, CONVERT and PARSE functions:

    1. SELECT CAST('6/08/2012' AS DATETIME2) AS [CAST Function Result] -- Using CAST Function  GO  SELECT CONVERT(DATETIME2, '06/08/2012') AS [CONVERT Function Result] --Using Convert Function  Go  SELECT PARSE('06/08/2012' AS Datetime2 USING 'en-US') AS [PARSE Function Result] -- Using Parse Function  GO  
    Now press F5 to execute those commands. The result the command produces is:

     

    As you will see, only PARSE is able to convert the string value to a datetime and the first two queries that are using CAST and CONVERT will fail as in the following:
    1. SELECT CAST('Monday, 06 august 2012' AS DATETIME2) AS [CAST Function Result] -- Using CAST Function  GO  SELECT CONVERT(DATETIME2, 'Monday, 06 august 2012') AS [CONVERT Function Result] --Using Convert Function  Go  SELECT PARSE('Monday, 06 august 2012' AS Datetime2 USING 'en-US') AS [PARSE Function Result] -- Using Parse Function  GO  
    Now press F5 to execute the preceding commands. The output will be as in the following:



  2. Try_Parse Function

    This function works similarly to the parse function except if the conversion is successful then it will return the value as the specified data type. Otherwise it will return a NULL value.

    Syntax

    TRY_PARSE ( string_value AS data_type [ USING culture ] )

    Example


    Using Parse Function
    1. SELECT Parse ('Sunday, 06 august 2012' AS Datetime2 USING 'en-US'AS [PARSE Function Result] -- Using Parse Function 
    Output



    Now Using Try_Parse Function
    1. SELECT Try_Parse ('Sunday, 06 august 2012' AS Datetime2 USING 'en-US'AS [Try_PARSE Function Result] -- Using Try_Parse Function  GO  
  3. Try_Convert Function

    This is similar to the convert function except it returns null when the conversion fails. If the conversion cannot be completed because the data type of the expression is not allowed to be explicitly converted to the specified data type, an error will be thrown.

    Syntax

    TRY_CONVERT ( data_type [ ( length ) ], expression [, style ] )

    Example
    1. SELECT TRY_CONVERT(Datetime2, '06/08/2012'AS [Try_Convert Function Result] -- Using Try_Convert Function  
    In the preceding example the conversion cannot be completed because the data type of the expression is not allowed to be explicitly converted to the specified data type.

Date and time Functions

SQL Server provides many functions for getting date and time values from their parts. You can do that easily using the functions DATEFROMPARTS, TIMEFROMPARTS, DATETIMEFROMPARTS and so on. in SQL Server 2012. Before SQL Server 2012, you need to do many conversions to get the desired results. In this article, you will see how to get date and time values from their parts in SQL Server 2008 conversion.

In SQL Server 2008

To get date and time values from their parts in SQL Server 2008:

  1. Declare @Year as int=2013  
  2. Declare @Month as int=02  
  3. Declare @Day as int=20  
  4. Select Convert(DateConvert(varchar(4), @Year) + '-' + Convert(varchar(2), @Month) + '-' + Convert(varchar(2), @Day)) 

Output

 

In SQL Server 2012

DATEFROMPARTS Function

The DATEFROMPARTS function returns a date value for the specified year, month, and day. The syntax of the DATEFROMPARTS built-in date function is as follows:

DATEFROMPARTS ( year, month, day )

All three parameters of the DATEFROMPARTS function are required.

year: Integer expression specifying a year.
month: Integer expression specifying a month, from 1 to 12.
day: Integer expression specifying a day.

Example

  1. Declare @Year as int=2013  
  2. Declare @Month as int=02  
  3. Declare @Day as int=20  
  4. Select DATEFROMPARTS(@Year, @Month, @Day)  

Output

2013-02-20

TIMEFROMPARTS Function

The TIMEFROMPARTS function returns time values for the specified time and with the specified precision. The syntax of the TIMEFROMPARTS built-in date function is as follows:

TIMEFROMPARTS ( hour, minute, seconds, fractions, precision)

If the arguments are invalid, then an error is raised. If any of the parameters are null, null is returned.

Example

  1. Declare @hour as int=58  
  2. Declare @minute as int=46  
  3. Declare @seconds as int=20  
  4. Declare @fractions as int=0  
  5. Declare @precision as int=0  
  6.   
  7. Select TIMEFROMPARTS(@hour , @minute , @seconds, @fractions , @precision

Output

58:46:20.0000000

DATETIMEFROMPARTS Function

The DATETIMEFROMPARTS function returns a DateTime value for the specified date and time. The syntax of the DATETIMEFROMPARTS built-in date function is as follows:

DATETIMEFROMPARTS ( year, month, day, hour, minute, seconds, milliseconds)
 
If the arguments are invalid, then an error is raised. If any of the parameters are null, null is returned.

Example

  1. Declare @Year as int=2013  
  2. Declare @Month as int=12  
  3. Declare @Day as int=20  
  4. Declare @hour as int=58  
  5. Declare @minute as int=46  
  6. Declare @seconds as int=0  
  7. Declare @milliseconds as int=0  

Select DATETIMEFROMPARTS (@Year, @Month, @Day, @hour , @minute , @seconds, @milliseconds)

Output

2013-12-20 58:59:46.0000000

The Eomonth Function

The Eomonth function returns the last day of the month that contains the specified date.

Syntax

The syntax of the "Month" built-in date function is as follows:

MONTH ( startdate [,month_to_add ] )

Here:

The "startdate" parameter can be an expression specifying the date for which to return the last day of the month.
The "month_to_add" is optional.

Example

  1. Select getdate()asCurrentDate  
  2. Go  
  3. SelectEomonth(getdate())asMonth  
  4. Go  
  5. SelectEomonth('09/12/2012',2)as Month  
  6. Go  
  7. SelectEomonth('09/12/2012')asMonth 

Output



String Functions

Format Function

The Format() function is used to format how a field is to be displayed.

Format converts the first argument to a specified format and returns the string value.

Syntax

FORMAT(column_name,format)

where both the field are required.

This function formats the date time. This function is used in the server .NET Framework and CLR. This function will solve many formatting issues for developers.

Example
  1. DECLARE @d DATETIME = '20/03/2011';  
  2. SELECT FORMAT ( @d, 'd''en-US' ) AS US_Result; 

Output

20/03/2011

Concat Function

It's the same concatenate function that we use in Excel, it will concatenate two or more strings to make it a single string. It implicitly converts all arguments to string types. This function expects at least two parameters and a maximum of 254 parameters.

Syntax

CONCAT ( string_value1, string_value2 [, string_valueN ] )

String_value: A string value to concatenate to the other values.

Example

  1. SELECT CONCAT('Rohatash'' ''Kumar'AS [Using concate Function]; 

Output

Rohatash-Kumar

Analytic Functions

The First_Value and Last_Value are part of the analytic functions. The First_Value function returns the first value in an ordered set of values, and similarly the Last_Value function returns the last value from an ordered set of values.

Creating a table in SQL Server

Now we create a table named employee.

  1. Create table Employee  
  2. (  
  3. EmpID int,  
  4. EmpName varchar(30),  
  5. EmpSalary int  

The following is the sample data for the employee Table.



First_Value Function

The First_Value function is a new analytic function in SQL Server. It returns the first value in an ordered set of values. Here, you will see some examples related to the First_Value function.

Syntax

The following is the SQL Analytic First_Value function syntax:

First_Value ( [scalar_expression )

OVER ([partition_by_clause] order_by_clause)
Scalar_expression: can be a column, subquery, or other expression that results in a single value.
OVER: Specify the order of the rows.
ORDER BY: Provide sort order for the records.
Partition By: Partition by clause is an optional part of the First_Value function and if you don't use it then all the records of the result-set will be considered as being a part of a single record group or a single partition.

Example

Assume the following query:
  1. Select *, First_value(EmpSalary) OVER (order BY EmpSalary ) as First_ValueResut From Employee  

Output



First_Value Function with Partition By Clause

The Partition by clause is an optional part of the First_Value function. By using the PARTITION BY clause with the FIRST_VALUE function we can divide the result set by name.

Example
  1. Select *, Lead(EmpName) OVER (partition by EmpName ORDER BY EmpName DESCAS Result From Employee 

Output



Last_Value Function

The Last_Value function is also a new analytic function in SQL Server. It returns the last value in an ordered set of values. Here, you will see some examples related to the Last_Value  function.

Syntax

The following is the SQL Analytic Last_Value function syntax:

Last_Value ( [scalar_expression )
  • OVER ([partition_by_clause] order_by_clause)
  • Scalar_expression: can be a column, subquery, or other expression that results in a single value.
  • OVER: Specify the order of the rows.
  • ORDER BY: Provide sort order for the records.
  • Partition By: Partition by clause is a optional part of Last_Value function and if you don't use it all the records of the result-set will be considered as a part of single record group or a single partition and then ranking functions are applied.
Example

Let us see the following query:
  1. Select *, LAST_VALUE(EmpSalary) OVER(ORDER BY EmpSalary ) AS Last_Salary  
  2. FROM Employee 

Output



Last_Value Function with Partition By Clause

The Partition by clause is an optional part of the Last_Value function. By using the PARTITION BY clause with the Last_Value function we can divide the result set by name.

Example
  1. Select *, LAST_VALUE(EmpSalary) OVER(partition by EmpName ORDER BY EmpSalary ) AS Last_Salary  
  2. FROM Employee 

Output



8. Enhanced Execute Keyword with WITH RESULT SETS

The EXECUTE keyword is used to execute a command string. You cannot change the column name and datatype using the execute keyword in SQL Server 2005/2008. You need to modify the Stored Procedure respectively. The previous version of SQL Server only has the WITH RECOMPILE option to force a new plan to be re-compiled. The ability to do that in SQL Server 2012 dramatically improves this part. In SQL Server 2012, there is no need to modify a Stored Procedure. You can change the column name and datatype using the execute keyword.

The table looks as in the following:
  1. Create TABLE UserDetail  
  2. (  
  3. User_Id int NOT NULL IDENTITY(1,1),  
  4. FirstName varchar(20),  
  5. LastName varchar(40) NOT NULL,  
  6. Address varchar(255),  
  7. PRIMARY KEY (User_Id)  
  8. )  
  9.   
  10. INSERT INTO UserDetail(FirstName, LastName, Address)  
  11. VALUES ('Smith''Kumar','Capetown'),  
  12. ('Crown''sharma','Sydney'),  
  13. ('Copper''verma','Jamaica'),  
  14. ('lee''verma','Sydney')  
  15. go 

Now create a Stored Procedure for the select statement in SQL Server 2008:

  1. Create PROCEDURE SelectUserDetail  
  2. as  
  3. begin  
  4. select FirstName,LastName, Address from UserDetail  
  5. end  
  6. Now use an Execute command to run the stored procedure:  
  7. -- SQL Server 2008  
  8. execute SelectUserDetail 

Output



SQL Server 2012

Now we see how to change the column name and datatype using an execute keyword in SQL Server 2012. The previous version of SQL Server only has the WITH RECOMPILE option to force a new plan to be re-compiled. To do that in SQL Server 2012 dramatically improves this part. We change the FirstName to Name and the datatype varchar(20) to char(4). Now execute the following code in SQL Server 2012:
  1. execute SelectUserDetail  
  2. WITH result SETS  
  3.  (  
  4.  (  
  5. Name CHAR(4),  
  6. Lastname VARCHAR(20),  
  7. Address varchar(25)  
  8.  )  
  9.  );  

Now Press F5 to run the query and see the result:

 

9. User-Defined Server Roles

To easily manage the permissions in your databases, SQL Server provides several roles that are security principals that group other principals. In SQL Server 2008 R2, there was no option to create a server role. You can define a role at the database level only. If you create a custom role at the database level and then assign them to users. DBAs have always had the ability to create custom database roles, but never a server role.

For example, a development team works on a project with a database on a shared server. That means the DBA provide the rights to read/write access to every database on a shared server. This procedure was a bit complex. The only way to do it was either manually or using undocumented procedures. Neither of which were good solutions. The DBA can now create a role with read/write access on every DB on the server, or any other custom server wide role.

In SQL Server 2012 you can create your own role and define a customized permission for the role at a more granular level. To create a server role right-click on the Server Roles -> New Server Role..

Server Roles

Now click on the New Server Role.

Role

10. Metadata Discovery Enhancements

SQL Server 2012 supports business intellisense and debugging like Visual Studio. SQL Server 2012 also has improved metadata discovery that allow you to determine the shape of projected output from queries, tables, Stored Procedures, views and other objects. As a result SQL Server supports business intellisence and debugging.

Metadata 


Similar Articles