PL\SQL Developer is causing High CPU utilization.
I am a DBA, I , myself use the software for some development and I have noticed that all Developers using the the software are having session utilizing the all the CPU and bring down the server.
I trace the sessions and all of them are executing the following:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
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 = s.table_owner
and o.object_name = s.table_name
and o.object_type in ('TABLE', 'VIEW', 'PACKAGE','TYPE', 'PROCEDURE', 'FUNCTION', 'SEQUENCE')
I am a DBA, I , myself use the software for some development and I have noticed that all Developers using the the software are having session utilizing the all the CPU and bring down the server.
I trace the sessions and all of them are executing the following:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
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 = s.table_owner
and o.object_name = s.table_name
and o.object_type in ('TABLE', 'VIEW', 'PACKAGE','TYPE', 'PROCEDURE', 'FUNCTION', 'SEQUENCE')