Stored Procedure in SQL ServerA stored procedure is a group of one or more pre-compiled SQL statements into a logical unit. It is stored as an object inside the database server. It is a subroutine or a subprogram in the common computing language that has been created and stored in the database. Each procedure in SQL Server always contains a name, parameter lists, and Transact-SQL statements. The SQL Database Server stores the stored procedures as named objects. We can invoke the procedures by using triggers, other procedures, and applications such as Java, Python, PHP, etc. It can support almost all relational database systems. SQL Server builds an execution plan when the stored procedure is called the first time and stores them in the cache memory. The plan is reused by SQL Server in subsequent executions of the stored procedure, allowing it to run quickly and efficiently. Features of Stored Procedures in SQL ServerThe following are the features of stored procedure in SQL Server:
Types of Stored ProceduresSQL Server categorizes the stored procedures mainly in two types:
User-defined Stored ProceduresDatabase developers or database administrators build user-defined stored procedures. These procedures provide one or more SQL statements for selecting, updating, or removing data from database tables. A stored procedure specified by the user accepts input parameters and returns output parameters. DDL and DML commands are used together in a user-defined procedure. We can further divide this procedure into two types:
System Stored ProceduresThe server's administrative tasks depend primarily on system stored procedures. When SQL Server is installed, it creates system procedures. The system stored procedures prevent the administrator from querying or modifying the system and database catalog tables directly. Developers often ignore system stored procedures. SQL Server Stored Procedures SyntaxThe following are the basic syntax to create stored procedures in SQL Server: Parameter ExplanationsThe stored procedure syntax has the following parameters: Schema_name: It is the name of your database or schema. By default, a procedure is associated with the current database, but we can also create it into another database by specifying the DB name. Procedure_Name: It represents the name of your stored procedure that should be meaningful names so that you can identify them quickly. It cannot be the system reserved keywords. Parameter_Name: It represents the number of parameters. It may be zero or more based upon the user requirements. We must ensure that we used the appropriate data type. For example, @Name VARCHAR(50). SET NOCOUNT ON in Stored ProcedureIn some cases, we use the SET NOCOUNT ON statement in the stored procedure. This statement prevents the message that displays the number of rows affected by SQL queries from being shown. NOCOUNT denotes that the count is turned off. It means that if SET NOCOUNT ON is set, no message would appear indicating the number of rows affected. How to execute/call a stored procedure?We can use the EXEC command to call/execute stored procedures in SQL Server. The following syntax illustrates the execution of a stored procedure: If we are using the SSMS, we need to use the below steps to execute stored procedures:
Stored Procedure Simple ExampleWe can create a stored procedure in SQL Server in two ways:
We will take a student table to demonstrate the stored procedure examples. This table has the following data: ![]() The below example uses the CREATE PROCEDURE SQL statement for creating a stored procedure that displays the student's list in the increasing order of a salary from the STUDENT table in the selected database: In this syntax, the studentList is the name of the stored procedure, and the AS keyword distinguishes the stored procedure's heading and body. The BEGIN and END keywords that accompany a single statement in a stored procedure are optional. However, it's a good idea to include them to make the code more understandable. When we run this statement, and everything is correct, the following message will appear: "Commands completed successfully." It indicates that the stored procedure was successfully compiled and saved to the database system. We can execute this procedure by using the below command: It will return the output as follows: ![]() If we are using the SSMS, use the following steps for creating the stored procedure: Step 1: Select the Database -> Programmability -> Stored Procedures. ![]() Step 2: Right-click on the Stored Procedures folder to open the menu and then select the New -> Stored Procedure option as follows: ![]() Step 3: When we select the New Stored Procedure option, we will get the new query window containing the default Stored Procedure Template. Here, we can add the procedure name, parameters (if any), and the SQL query we want to use. How to rename stored procedures in SQL Server?SQL Server does not allow us to change the name of a stored procedure. Because renaming a stored procedure does not modify the name of the corresponding object in the sys.sql_modules. Therefore, if we need to change the existing stored procedure, simply DROP and recreate it with a new name. How to modify stored procedures in SQL Server?We need to update or modify the stored procedure over a period of time. SQL Server allows us to update or modify an existing stored procedure in two ways:
Modify Stored Procedures using SSMSThe following steps help to learn how we can modify or make changes in stored procedures: Step 1: Navigate to the Database -> Programmability -> Stored Procedures. Step 2: Expand the Stored Procedures folder, right-click on the stored procedure that you want to modify, and then select the Modify option as follows: ![]() Step 3: Once we click the Modify option, we will get a new query window with an auto-generated ALTER PROCEDURE code. Here we can make changes as per our needs. Modify Stored Procedures using T-SQL QuerySQL Server provides an ALTER PROCEDURE statement to make modifications in the existing stored procedures. If we want to modify the above created stored procedure, we can write the ALTER PROCEDURE statement as follows: Let's run the procedure to check whether we have successfully updated the studentList procedure or not. Using the EXECUTE statement, we will get the below output where we can see that our stored procedure is successfully modified. ![]() How to list all stored procedures in SQL Server?When we have several procedures, it is very important to list all procedures. Because sometimes the procedure names are the same in many databases. In that case, this query is very useful. We can list all stored procedure in the current database as follows: The best way for listing all user-defined stored procedures in a database is to use the ROUTINES information schema view as below: OR, Another way to return a list of stored procedures is to query the sys.objects system catalog view. How to delete/drop stored procedures in SQL Server?We can delete the stored procedure in SQL Server permanently. SQL Server removes the stored procedure in two ways:
DROP Stored Procedures using SSMSThe following steps help to learn how we can delete stored procedures: Step 1: Go to the Database -> Programmability -> Stored Procedures. Step 2: Expand the Stored Procedures folder, right-click on the stored procedure that you want to remove, and then select the Delete option as follows: ![]() Step 3: Once we click the Delete option, we will get a Delete Object window. We can check the dependencies by clicking on the Show Dependencies button and then click OK to remove the stored procedure. ![]() Delete Stored Procedures using T-SQL QuerySQL Server provides a DROP PROCEDURE statement to remove the existing stored procedures. We can write the DROP PROCEDURE statement as follows: NOTE: It's a good idea to use IF OBJECT ID ('procedure name', 'P') IS NOT NULL to see if the stored procedure exists in the database.Input Parameters in Stored ProcedureSQL Server allows us to create input parameters stored procedures. This type of stored procedure can enable us to pass one or more parameters to get the filtered result. Let us understand it with the help of an example. Consider the following 'customer' table: ![]() The below statement creates a stored procedure with an input parameter: If we want to execute this stored procedure, we need to pass the value for the @States parameter. We can pass the parameter value in any of the following ways: We will get the output as below: ![]() ![]() Output Parameters in Stored ProcedureSQL Server enables us to provide many output parameters in a stored procedure. These output parameters can be of any valid data type, such as integer, date, or character. We can use the below syntax to create an output parameter in the stored procedure: Let us understand how to use Output Parameters in a stored procedure with the help of an example. The following statement will create a procedure called countStudent, in which we will declare an integer type variable called @StudentCount and use the OUTPUT keyword. The procedure uses the COUNT function to find the number of students in the STUDENT table, and then the value is assigned to the output parameter. Now, we will execute the stored procedure. Here, we need to pass the output parameter @StudentaCouns as follows: We will get the following output: ![]() Temporary Stored ProcedureWe can create temporary procedures in the same way as we can create temporary tables. The tempdb database is used to create these procedures. We can divide the temporary procedures into two types:
Local Temporary Stored Procedures: We can create this type of procedure by using the # as prefix and accessed only in the session in which they were created. When the connection is closed, this process is immediately terminated. Here's an example of how to create a local temporary procedure: Global Temporary Stored Procedure: We can create this type of procedure by using the ## as a prefix and accessed from any sessions. When the connection that was used to create the procedure is closed, this procedure is automatically terminated. Here's an example of how to create a global temporary procedure: Disadvantages of Stored ProceduresThe following are the limitations of stored procedures in SQL Server: Debugging: Since debugging stored procedures is never simple, it is not advised to write and execute complex business logic using them. As a result, if we will not handle it properly, it can result in a failure. Dependency: As we know, professional DBAs and database developers handle vast data sets in large organizations. And the application developers must depend on them because any minor changes must be referred to a DBA, who can fix bugs in existing procedures or build new ones. Expensive: Stored procedures are costly to manage in terms of DBAs because organizations would have to pay extra costs for specialist DBAs. A DBA is much more qualified to handle complex database procedures. Specific to a Vendor: Stored procedures written in one platform cannot run on another. Since procedures written in Oracle are more complicated, we will need to rewrite the entire procedure for SQL Server.
Next TopicTriggers in SQL Server
|