Stored Procedures
In SQL Server, a procedure is a stored program that you can pass parameters into. It does not return a value like a function does. However, it can return a success/failure status to the procedure that called it.
Creating and executing a basic stored procedure
Section titled “Creating and executing a basic stored procedure”Using the Authors table in the Library Database
CREATE PROCEDURE GetName( @input_id INT = NULL, --Input parameter, id of the person, NULL default @name VARCHAR(128) = NULL --Input parameter, name of the person, NULL default)ASBEGIN SELECT Name + ' is from ' + Country FROM Authors WHERE Id = @input_id OR Name = @nameENDGOYou can execute a procedure with a few different syntaxes. First, you can use EXECUTE or EXEC
EXECUTE GetName @id = 1EXEC Getname @name = 'Ernest Hemingway'Additionally, you can omit the EXEC command. Also, you don’t have to specify what parameter you are passing in, as you pass in all parameters.
GetName NULL, 'Ernest Hemingway'When you want to specify the input parameters in a different order than how they are declared in the procedure you can specify the parameter name and assign values. For example
CREATE PROCEDURE dbo.sProcTemp ( @Param1 INT, @Param2 INT)ASBEGIN
SELECT Param1 = @Param1, Param2 = @Param2
ENDthe normal order to execute this procedure is to specify the value for @Param1 first and then @Param2 second. So it will look something like this
EXEC dbo.sProcTemp @Param1 = 0,@Param2=1But it’s also possible that you can use the following
EXEC dbo.sProcTemp @Param2 = 0,@Param1=1in this, you are specifying the value for @param2 first and @Param1 second. Which means you do not have to keep the same order as it is declared in the procedure but you can have any order as you wish. but you will need to specify to which parameter you are setting the value
Access stored procedure from any database
And also you can create a procedure with a prefix sp_ these procuedres, like all system stored procedures, can be executed without specifying the database because of the default behavior of SQL Server. When you execute a stored procedure that starts with “sp_”, SQL Server looks for the procedure in the master database first. If the procedure is not found in master, it looks in the active database. If you have a stored procedure that you want to access from all your databases, create it in master and use a name that includes the “sp_” prefix.
Use Master
CREATE PROCEDURE sp_GetName( @input_id INT = NULL, --Input parameter, id of the person, NULL default @name VARCHAR(128) = NULL --Input parameter, name of the person, NULL default)ASBEGIN SELECT Name + ' is from ' + Country FROM Authors WHERE Id = @input_id OR Name = @nameENDGOStored Procedure with If…Else and Insert Into operation
Section titled “Stored Procedure with If…Else and Insert Into operation”Create example table Employee:
CREATE TABLE Employee( Id INT, EmpName VARCHAR(25), EmpGender VARCHAR(6), EmpDeptId INT)Creates stored procedure that checks whether the values passed in stored procedure are not null or non empty and perform insert operation in Employee table.
CREATE PROCEDURE spSetEmployeeDetails( @ID int, @Name VARCHAR(25), @Gender VARCHAR(6), @DeptId INT)ASBEGIN IF ( (@ID IS NOT NULL AND LEN(@ID) !=0) AND (@Name IS NOT NULL AND LEN(@Name) !=0) AND (@Gender IS NOT NULL AND LEN(@Gender) !=0) AND (@DeptId IS NOT NULL AND LEN(@DeptId) !=0) ) BEGIN INSERT INTO Employee ( Id, EmpName, EmpGender, EmpDeptId ) VALUES ( @ID, @Name, @Gender, @DeptId ) ENDELSE PRINT 'Incorrect Parameters'ENDGOExecute the stored procedure
DECLARE @ID INT, @Name VARCHAR(25), @Gender VARCHAR(6), @DeptId INT
EXECUTE spSetEmployeeDetails @ID = 1, @Name = 'Subin Nepal', @Gender = 'Male', @DeptId = 182666Dynamic SQL in stored procedure
Section titled “Dynamic SQL in stored procedure”Dynamic SQL enables us to generate and run SQL statements at run time. Dynamic SQL is needed when our SQL statements contains identifier that may change at different compile times.
Simple Example of dynamic SQL:
CREATE PROC sp_dynamicSQL@table_name NVARCHAR(20),@col_name NVARCHAR(20),@col_value NVARCHAR(20)ASBEGINDECLARE @Query NVARCHAR(max)SET @Query = 'SELECT * FROM ' + @table_nameSET @Query = @Query + ' WHERE ' + @col_name + ' = ' + ''''+@col_value+''''EXEC (@Query)ENDIn the above sql query, we can see that we can use above query by defining values in @table_name, @col_name, and @col_value at run time. The query is generated at runtime and executed. This is technique in which we can create whole scripts as string in a variable and execute it. We can create more complex queries using dynamic SQL and concatenation concept. This concept is very powerful when you want to create a script that can be used under several conditions.
Executing stored procedure
DECLARE @table_name NVARCHAR(20) = 'ITCompanyInNepal', @col_name NVARCHAR(20) = 'Headquarter', @col_value NVARCHAR(20) = 'USA'
EXEC sp_dynamicSQL @table_name, @col_name, @col_valueTable I have used
Output
STORED PROCEDURE with OUT parameters
Section titled “STORED PROCEDURE with OUT parameters”Stored procedures can return values using the OUTPUT keyword in its parameter list.
Creating a stored procedure with a single out parameter
Section titled “Creating a stored procedure with a single out parameter”CREATE PROCEDURE SprocWithOutParams( @InParam VARCHAR(30), @OutParam VARCHAR(30) OUTPUT)ASBEGIN SELECT @OutParam = @InParam + ' must come out' RETURNENDGOExecuting the stored procedure
Section titled “Executing the stored procedure”DECLARE @OutParam VARCHAR(30)EXECUTE SprocWithOutParams 'what goes in', @OutParam OUTPUTPRINT @OutParamCreating a stored procedure with multiple out parameters
Section titled “Creating a stored procedure with multiple out parameters”CREATE PROCEDURE SprocWithOutParams2( @InParam VARCHAR(30), @OutParam VARCHAR(30) OUTPUT, @OutParam2 VARCHAR(30) OUTPUT)ASBEGIN SELECT @OutParam = @InParam +' must come out' SELECT @OutParam2 = @InParam +' must come out' RETURNENDGOExecuting the stored procedure
Section titled “Executing the stored procedure”DECLARE @OutParam VARCHAR(30)DECLARE @OutParam2 VARCHAR(30)EXECUTE SprocWithOutParams2 'what goes in', @OutParam OUTPUT, @OutParam2 OUTPUTPRINT @OutParamPRINT @OutParam2Simple Looping
Section titled “Simple Looping”First lets get some data into a temp table named #systables and ad a incrementing row number so we can query one record at a time
select o.name, row_number() over (order by o.name) as rninto #systablesfrom sys.objects as owhere o.type = 'S'Next we declare some variables to control the looping and store the table name in this example
declare @rn int = 1, @maxRn int = ( select max(rn) from #systables as s )declare @tablename sys nameNow we can loop using a simple while. We increment @rn in the select statement but this could also have been a separate statement for ex set @rn = @rn + 1 it will depend on your requirements. We also use the value of @rn before it’s incremented to select a single record from #systables. Lastly we print the table name.
while @rn <= @maxRn begin
select @tablename = name, @rn = @rn + 1 from #systables as s where s.rn = @rn
print @tablename endSimple Looping
Section titled “Simple Looping”CREATE PROCEDURE SprocWithSimpleLoop( @SayThis VARCHAR(30), @ThisManyTimes INT)ASBEGIN WHILE @ThisManyTimes > 0 BEGIN PRINT @SayThis; SET @ThisManyTimes = @ThisManyTimes - 1; END
RETURN;ENDGOSyntax
Section titled “Syntax”- CREATE { PROCEDURE | PROC } [schema_name.]procedure_name
- [ @parameter [type_schema_name.] datatype
- [ VARYING ] [ = default ] [ OUT | OUTPUT | READONLY ]
- , @parameter [type_schema_name.] datatype
- [ VARYING ] [ = default ] [ OUT | OUTPUT | READONLY ] ]
- [ WITH { ENCRYPTION | RECOMPILE | EXECUTE AS Clause } ]
- [ FOR REPLICATION ]
- AS
- BEGIN
- [declaration_section]
- executable_section
- END;

