MCQOPTIONS
Saved Bookmarks
| 1. |
The following query lists all of the base objects for the synonyms created by user jward. What is displayed by the following example?SELECT TABLE_OWNER, TABLE_NAME, SYNONYM_NAMEFROM DBA_SYNONYMSWHERE OWNER = 'JWARD';The following is the query output:TABLE_OWNER----TABLE_NAME----SYNONYM_NAME---------------------- ----------- -----------------SACHIN---------DEPT----------DEPTSACHIN---------EMP-----------EMP |
| A. | Displaying Schema Objects by Type |
| B. | Displaying Dependencies of Views and Synonyms |
| C. | Both A & B |
| D. | None of the above |
| Answer» C. Both A & B | |