How do I list all synonyms in my database? I need to know which ones are created to compare what exists between banks. I've tried the following code but it does not return synonyms:
select * from all_objects
How do I list all synonyms in my database? I need to know which ones are created to compare what exists between banks. I've tried the following code but it does not return synonyms:
select * from all_objects
select * from all_synonyms;
There is a view for each type of object you create. example: all_tables, all_views, all_procedures ......