InterviewSolution
| 1. |
What Happens If A Private Referenced Table Is Dropped, But A Public Table With The Same Name Exists? |
|
Answer» When a private table, which is referenced by a dependent procedure, is DROPPED, the dependent procedure is invalidated. When the procedure is recompiled and a PUBLIC table of the same name EXISTS with all the columns REQUIRED by the procedure, then the procedure will recompile successfully but refer to the public table. When a private table, which is referenced by a dependent procedure, is dropped, the dependent procedure is invalidated. When the procedure is recompiled and a public table of the same name exists with all the columns required by the procedure, then the procedure will recompile successfully but refer to the public table. |
|