A view and a synonym are created as follows:
create view dept_v as select * from dept; create synonym dept_s for dept_v; Subsequently the table DEPT is dropped.
What will happen if you query the synonym DEPT_S ? (Choose the best answer.)
The synonym will be fine, but the view will be invalid. Oracle will attempt to recompile the view, but this will fail.
Currently there are no comments in this discussion, be the first to comment!