0% found this document useful (0 votes)
164 views

Stored Procedures in MS SQL Server

Stored procedures offer many advanced features not available in the standard SQL language. The ability to pass parameters and perform logic allows the application designer to automate complex tasks. In addition, these procedures being stored at the local server reduces the amount of bandwidth and time required to execute the procedure.

Uploaded by

Martin Ortega
Copyright
© © All Rights Reserved
0% found this document useful (0 votes)
164 views

Stored Procedures in MS SQL Server

Stored procedures offer many advanced features not available in the standard SQL language. The ability to pass parameters and perform logic allows the application designer to automate complex tasks. In addition, these procedures being stored at the local server reduces the amount of bandwidth and time required to execute the procedure.

Uploaded by

Martin Ortega
Copyright
© © All Rights Reserved
You are on page 1/ 5

Stored Procedures in MS SQL Server

Stored procedures offer many advanced features not available in the standard SQL language.
The ability to pass parameters and perform logic allows the application designer to automate
complex tasks. In addition, these procedures being stored at the local server reduces the
amount of bandwidth and time required to execute the procedure.
There are several advantages to writing your own procedures, first you are able to write
complex SQL statements into the procedure, second, to execute those SQL statements, all
the user has to do is to run the procedure.
With the use of parameters, you can make your stored procedures much more useful as well
as powerful. The following sample database, will show you the syntax for creating some
stored procedures for CRUD operations.
There is also a security advantage to using stored procedures. After the stored procedure has
been created, all access to the underlying tables can be revoked to the users.

Reading Data with Stored Procedures


The following example creates a stored procedure to return all authors in the table.

After you create this stored procedure, you will execute it by running the following statement:

This will return the authors which Surname is equal to 'Deitel'. One of the problems is that if
you do not pass it one of the parameters that is expecting, you will get an error. One way to
get around this is to set up the parameters to use a default value.

Adding Data with Stored Procedures

The OUTPUT Parameter


The OUTPUT parameter is a very special type of parameter. It allows you to return data
directly into a variable that can be used in other processing. The value that is returned is the
current value of that parameter when processing of the stored procedure completes.
The following example shows how to create a simple store procedure that utilizes the
OUTPUT keyword:
To execute this store, run the following script:
Modifying Data with Stored Procedure

Stored procedures can also be used to modify data. Any valid insert, update or delete can be
made into a stored procedure and can be run by executing a single line of code instead of
running many lines of code.
The following example will delete a book and erase all its relations in the table [Authorbook]
To test this store run the following script

Download the scripts for this example.

You might also like