Summary
You may have notice using TOAD 8.6 connecting as APPS to E-Business suite it takes long time. Usually more than 3 minutes.
When connecting as APPS with TOAD, the application is running some queries accessing the oracle dictionary. For example the following query:
select tabs.table_name, 'APPS', tabs.cluster_name
, partitioned, iot_type
, TEMPORARY, table_type, table_type_owner
,tablespace_name
, NESTED
, last_analyzed
, Dropped
, decode(nvl(buffer_pool, 'x') || upper(partitioned) ||
nvl(iot_type, 'x'), 'xNOx', 'YES', 'NO') is_External
from sys.user_All_tables tabs where 1=1
order by table_name;
Trying to calculate statistics about the oracle data dictionary
won't help solve the problem.
One solutions that worked for me is changing the Toad options:
Go to Toad menu:
View ->Options...
Choose the
Editors ->General
and for Syntax highlighting
Uncheck all the options apart from the "Use on clipboard(RTF format) and "Use when printing".
Uncheck "Highlight table names"
Uncheck "Highlight view names"
Uncheck "Highlight stored procedure names"
Now open a new connection as APPS with TOAD