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...
Sunday, 14 December 2014
SET NOCOUNT
Stops the message that shows the count of the number of rows affected by a Transact-SQL statement or stored procedure from being returned as part of the result set.Syntax: SET NOCOUNT { ON | OFF } RemarksWhen SET NOCOUNT is ON, the count is not returned. When SET NOCOUNT is OFF, the count is returned.The...
Wednesday, 10 December 2014
Built-in Functions (Transact-SQL)
CHARINDEX - Searches an expression for another expression and returns its starting position if found.
DECLARE @FullName VARCHAR(100)
SET @FullName = 'Clark Kent'
select CHARINDEX(' ', @FullName)
Output – 6
STUFF - The STUFF function inserts a string into
another string. It deletes a specified...
Monday, 21 July 2014
Different Types of SQL Joins
S
ql joins are used to fetch/retrieve data from two or more
data tables, based on a join condition. A join condition is a relationship
among some columns in the data tables that take...
Basics of SQL Commands
SQL commands are a set of instructions that are used to
interact with the database like Sql Server, MySql, Oracle etc. SQL commands are
responsible to create and to do all the manipulation on the database. These are
also responsible to give/take out access rights on a particular database
Sql Commands...