when pl/sql Developer Start, it execute some sql statements, Among them, below statement show bad performance and use high cpu resources.
.
select s.synonym_name object_name, o.object_type
from sys.all_synonyms s, sys.all_objects o
where s.owner in ('PUBLIC', user)
and o.owner =...