Hello, Our site uses TOAD exclusively with Team Coding and SVN. The performance is really bad almost to the point where we want to remove team coding. We were able to determine one of the main queries that is really bad is below:
select * from user_tables where (table_name = :table_name or iot_name = :table_name);
It takes 44 seconds to run this query in DEV for a single table!! All SYS and SYSTEM tables are analyzed weekly.
We have 1426 tables in the view owned by one schema which is the user we have for all applications. We have a single IOT in that schema but it is rarely used.
Removing the OR clause works great but that is not an option because we are not generating these queries.
HELP!!!