Collections:
What Are Stored Procedures in SQL Server
What Are Stored Procedures in SQL Server Transact-SQL?
✍: FYIcenter.com
A stored procedure is a collection of Transact-SQL statements that stored in the SQL Server. A stored procedure can be executed later with an EXEC statement. SQL Server supports stored procedures with the following features:
1. Stored procedures can be divided into 3 groups based their accessing scopes:
2. Stored procedures can take input parameters.
3. Stored procedures can take output parameters.
4. Stored procedures can be mapped to references to Microsoft .NET Framework common language runtime (CLR) methods.
⇒ "CREATE PROCEDURE" - Creating Simple Stored Procedures in SQL Server
⇐ Using Stored Procedures in SQL Server Transact-SQL
2017-01-11, 2504🔥, 0💬
Popular Posts:
What Privilege Is Needed for a User to Delete Rows from Tables in Another Schema in Oracle? For a us...
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...
How To Use GO Command in "sqlcmd" in SQL Server? "sqlcmd" is a command line client application to ru...
How To Get the Definition of a User Defined Function Back in SQL Server Transact-SQL? If you want ge...