InterviewSolution
Saved Bookmarks
| 1. |
Suppose A Procedure Proc_1 Refers To A Procedure Proc_2 Within The Pack_1 Package. If The Definition Of The Proc_2 Procedure Is Changed And It Is Recompiled Again, Then Does The Proc_1 Procedure Is Invalidated ? |
|
Answer» If the declaration of the proc_2 procedure is not ALTERED in the PACKAGE SPECIFICATION, then the proc_1 procedure is not invalidated. However, if the specification of the procedure is altered, then the DEPENDENT procedure gets the invalid STATUS. If the declaration of the proc_2 procedure is not altered in the package specification, then the proc_1 procedure is not invalidated. However, if the specification of the procedure is altered, then the dependent procedure gets the invalid status. |
|