InterviewSolution
| 1. |
What Is The Difference Between Referenced Object And Dependent Object? |
|
Answer» If the definition of an object A references object B, then A is the DEPENDENT object and B is the REFERENCED object. If a table is being queried in a procedure, then the table is the referenced object and the procedure is the dependent object. However, if the definition of the table is modified, the procedure MAY or may not execute CORRECTLY. If the definition of an object A references object B, then A is the dependent object and B is the referenced object. If a table is being queried in a procedure, then the table is the referenced object and the procedure is the dependent object. However, if the definition of the table is modified, the procedure may or may not execute correctly. |
|