Displaying Dependencies of Views and Synonyms - Oracle Schema
Q. 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_NAME
FROM DBA_SYNONYMS
WHERE OWNER = 'JWARD';
The following is the query output:
TABLE_OWNER----TABLE_NAME----SYNONYM_NAME
---------------------- ----------- -----------------
SACHIN---------DEPT----------DEPT
SACHIN---------EMP-----------EMP- Published on 12 Aug 15a. Displaying Schema Objects by Type
b. Displaying Dependencies of Views and Synonyms
c. Both A & B
d. None of the above
ANSWER: Displaying Dependencies of Views and Synonyms