March 2012
Intermediate to advanced
442 pages
9h 31m
English
Stored procedures are database objects that allow us to encapsulate a set of SQL statements and execute them directly on a server. A stored procedure resides in a database server, so when we execute it, it is executed locally. We can implement any business logic or application logic inside a stored procedure and keep it in the database. It can be invoked from any client application. Stored procedures can accept input parameters and return output parameters or result sets or both. In this recipe, we will see how to create a simple stored procedure.
We can define a stored procedure in the following three ways:
Read now
Unlock full access