Saved Bookmarks
| 1. |
What Are Stored Procedures, And How Do They Differ From Triggers? |
|
Answer» A stored procedure is a program that is stored within the database and is compiled when USED. They can receive input parameters and they can RETURN results. Unlike TRIGGERS, their scope is database-wide; they can be used by any process that has permission to use the database stored procedure. A stored procedure is a program that is stored within the database and is compiled when used. They can receive input parameters and they can return results. Unlike triggers, their scope is database-wide; they can be used by any process that has permission to use the database stored procedure. |
|