SQL Server question from a company in Maryland

Hi.  As I entered in the topic, I work for a company in Maryland.  I have considerable experience working with Microsoft Access, but not much with SQL Server.    I have a question on SQL Server:  What is a stored procedure?  Is this like a module in Microsoft Access?

 

JP

One thought on “SQL Server question from a company in Maryland

  1. Thanks for your question JP.

    A stored procedure is a bit different from a module in Access. Specifically it is a named group of SQL statements that have been previously created and stored in the server database. Stored procedures normally accept input parameters so that a single procedure can be used over the network by several clients using different input data. And when the code of the procedure is modified, all clients automatically get the new version. Stored procedures reduce network traffic and improve performance. They are good programming technique. Stored procedures can also be used to help ensure the integrity of databases.

Comments are closed.