Rob van Gelder
Member
Hi.
We have a database with approximately 21000 tables. Opening the Tables folder in the Browser is painfully slow. About 30 seconds.
I traced the SQL and this is what is run:
select object_name, owner object_owner, status, object_type, created, last_ddl_time
from sys.all_objects o
where object_type = 'TABLE'
and object_name not like 'BIN$%'
and (owner not in ('SYS', 'SYSTEM', 'OUTLN'))
order by decode(owner, user, 0, 1), owner, object_name
In PLSQL Developer, the first few rows start appearing after 5 seconds. It takes a further 28 seconds for the remaining results to become available.
In Excel, I created an OLEDB querytable and used the same SQL. The results are available on the sheet within 7 seconds.
Have I misconfigured PLSQL Developer to retrieve results slow?
What must be done to speed things up?
Please reply?
We have a database with approximately 21000 tables. Opening the Tables folder in the Browser is painfully slow. About 30 seconds.
I traced the SQL and this is what is run:
select object_name, owner object_owner, status, object_type, created, last_ddl_time
from sys.all_objects o
where object_type = 'TABLE'
and object_name not like 'BIN$%'
and (owner not in ('SYS', 'SYSTEM', 'OUTLN'))
order by decode(owner, user, 0, 1), owner, object_name
In PLSQL Developer, the first few rows start appearing after 5 seconds. It takes a further 28 seconds for the remaining results to become available.
In Excel, I created an OLEDB querytable and used the same SQL. The results are available on the sheet within 7 seconds.
Have I misconfigured PLSQL Developer to retrieve results slow?
What must be done to speed things up?
Please reply?