CREATE FUNCTION [dbo].[fnSplit](
@sInputList VARCHAR(8000) -- List of delimited items
, @sDelimiter
VARCHAR(8000) = ',' -- delimiter...
Monday, 5 October 2015
Tuesday, 28 April 2015
Schema in SQL Server 2012

IntroductionIn this article I describe schemas in SQL Server 2012. A schema is like a container that contains database objects like tables, views etc. So let us learn about schemas, creation of schemas,...
Wednesday, 18 February 2015
Delete duplicate rows in SQL Server
Introduction
Some time some duplicate data may inserted in the SQL table. But its harmful for you and your application too. So how to remove the duplicate rows in your table.
Description
Take a look...