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, 2327🔥, 0💬
Popular Posts:
How To Convert Characters to Numbers in Oracle? You can convert characters to numbers by using the T...
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...