InterviewSolution
| 1. |
What Are Stored Procedures? |
|
Answer» Stored procedure is a database object which is COLLECTION of SQL statements or constructs. PARAMETERS can be passed and returned, and error codes may be checked. Stored procedures, after their FIRST execution, BECOME memory resident and do not need to be reparsed, reoptimized, or recompiled. So they are faster. Stored procedure is a database object which is collection of SQL statements or constructs. Parameters can be passed and returned, and error codes may be checked. Stored procedures, after their first execution, become memory resident and do not need to be reparsed, reoptimized, or recompiled. So they are faster. |
|