What are Stored procedures?
A stored procedure is s named collection of SQL statements and procedural logic that is compiled, verified and kept in a server database. It is typically treated as any other database object. Stored procedures accept input parameters so that a one procedure can be used over the network by multiple clients using dissimilar input data. A single remote message triggers the implementation of a collection of stored SQL statements. The results are a reduction of network traffic and better presentation.