Quantcast
Channel: SQL Server Expert – SQL Steve
Viewing all articles
Browse latest Browse all 9

SQL Server DateTime Format Function

$
0
0

Creating a DateTime Format Function

While it is possible to format dates using T-SQL, it is not always efficient.  Sure there are a million custom format functions available and you can even use the CONVERT function and specify a “style” but that limits you to a pre-defined set of date formats.  This is where CLR integration comes into play.

The Microsoft .NET Framework has powerful string formatting capabilities for its own DateTime data type.  By calling the “ToString” function of a DateTime object, you can specify a format string and get a formatted DateTime in just about any format you can imagine.  What we’ll do in this post is take a look at how to create a simple CLR function that takes a SQL Server DateTime value and a format string and returns a formatted string.

Creating the Assembly

First, create a new Visual Studio “Class Library” project.  We’ll call this one “ClrLib”.

ClassLibraryProject

The next thing you want to do is drop the automatically generated “Class1.cs” file from the project and replace it with a new class file named “StringUtilities.cs”.

StringUtilities

This class will contain one method named “DateTimeFormat”  which will take as its input a SqlDateTime (the DateTime value to format) and a SqlString (the format string) and will return a SqlString (the formatted DateTime value).

 

StringUtilities.cs

using System.Data.SqlTypes;
using System.Globalization;
using Microsoft.SqlServer.Server;
 
namespace ClrLib
{
    public sealed class StringUtilities
    {
        [SqlFunction(DataAccess = DataAccessKind.None, IsDeterministic = false, IsPrecise = true, SystemDataAccess = SystemDataAccessKind.None)]
        public static SqlString DateTimeFormat(SqlDateTime input, SqlString formatString)
        {
            //This function returns a formatted date string
            return new SqlString(input.Value.ToString(formatString.Value, CultureInfo.CurrentCulture));
        }
    }
}

Once you’ve compiled the ClrLib assembly, it is time to move on to installing this assembly in your SQL Server database.

Loading the Assembly in SQL Server

By default, CLR integration is disabled in SQL Server.  To enable CLR integration, execute the following code snippet:

use master
GO
 
exec sp_configure ‘show advanced options’ , ’1′
GO
 
RECONFIGURE WITH OVERRIDE
GO
 
exec sp_configure ‘clr enabled’ , ’1′
GO
 
RECONFIGURE WITH OVERRIDE
GO

Now that CLR integration has been enabled, it is time to load the assembly to your SQL Server database.

–Set the database to which the assembly will be installed
use TestDb
GO
 
–Drop the function if it already exists
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N’[dbo].[ufn_DateTimeFormat]‘) AND type in (N’FN’, N’IF’, N’TF’, N’FS’, N’FT’))
DROP FUNCTION [dbo].[ufn_DateTimeFormat]
GO
 
–Drop the assembly if it already exists
IF EXISTS (SELECT * FROM sys.assemblies asms WHERE asms.name = N’ClrLib’) DROP ASSEMBLY [ClrLib]
GO
 
–Create the assembly
CREATE ASSEMBLY [ClrLib]
FROM ‘C:\\ClrLib.dll’
WITH PERMISSION_SET = SAFE
GO
 
–Create the function
CREATE FUNCTION [dbo].[ufn_DateTimeFormat] (@Input DATETIME, @FormatString NVARCHAR(50))
RETURNS NVARCHAR(50) WITH RETURNS NULL ON NULL INPUT
AS EXTERNAL NAME ClrLib.[ClrLib.StringUtilities].DateTimeFormat
GO

Once you’ve loaded the assembly and defined the function, it’s ready to use.

–Short Date Pattern
SELECT dbo.ufn_DateTimeFormat(GETDATE(), ‘d’)
GO
 
–Long Date Pattern
SELECT dbo.ufn_DateTimeFormat(GETDATE(), ‘D’)
GO
 
–Just the month and year
SELECT dbo.ufn_DateTimeFormat(GETDATE(), ‘M/yyyy’)
GO
 
–Full custom date and time
SELECT dbo.ufn_DateTimeFormat(GETDATE(), ‘dddd, MMMM d, yyyy h:m tt’)
GO

 

Summary

CLR integration is an incredibly powerful tool when used appropriately.  As you saw in this post, we were able to build a DateTime formatting function that can format a DATETIME value into almost any format you can imagine.  What’s more, the code to implement this solution is much easier to read and more elegant than most T-SQL implementations floating around the internet.  In future posts, we’ll use what we’ve covered here to explore other ways to use CLR integration to maximize SQL Server performance.  Until next time…

—-

SQL Server Expert, Steve Abraham, holds 8 Microsoft certifications and specializes in SQL Server and .Net Framework architecture, high availability, capacity planning, development, and performance tuning, and SQL Server Recovery.


Posted in Programming SQL Server, SQL Server 2005, SQL Server 2008, SQL Server CLR Tagged: DateTime, Format, SQL Server, SQL Server 2005, SQL Server 2008, SQL Server Expert, SQL Server Recovery, T-SQL

Viewing all articles
Browse latest Browse all 9

Trending Articles