Hi Marco
We analyzed database pefromance after stars using plsqldeveloper 11 and found that most usage of cpu is done by plsqldeveloper select (see select down on this post). Problem is too that this select runs even Ive loged out from database, select is still there as active session. This needs to be tune up, main problem is that select is slow and takes up too much cpu. Anyway why this select needs to be run? Is there any option how to disable it? And what happens when it will be disabled?
select s.synonym_name as object_name, o.object_type
from all_synonyms s, sys.all_objects o
where s.owner in ('PUBLIC', :schema)
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')
Pavel
We analyzed database pefromance after stars using plsqldeveloper 11 and found that most usage of cpu is done by plsqldeveloper select (see select down on this post). Problem is too that this select runs even Ive loged out from database, select is still there as active session. This needs to be tune up, main problem is that select is slow and takes up too much cpu. Anyway why this select needs to be run? Is there any option how to disable it? And what happens when it will be disabled?
select s.synonym_name as object_name, o.object_type
from all_synonyms s, sys.all_objects o
where s.owner in ('PUBLIC', :schema)
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')
Pavel