InterviewSolution
| 1. |
What Is A Package And How Does It Differ From Procedure And Function? |
|
Answer» A package is a group of logically related PL/SQL SUBPROGRAMS BUNDLED together with PL/SQL types and other associated OBJECTS. It consists of the following two parts:
The whole package is fully loaded into the memory when any package construct is called for the first time. Therefore, it does not require any DISK input/output on later calls to constructs in the same package. A package is a group of logically related PL/SQL subprograms bundled together with PL/SQL types and other associated objects. It consists of the following two parts: The whole package is fully loaded into the memory when any package construct is called for the first time. Therefore, it does not require any disk input/output on later calls to constructs in the same package. |
|