Hi Vijai,
>> We are getting very slow to retrieveing data from the server. Basically we have noticed the following system internal sqls taking more time during our sql calls.
That's a good clue.
**********************************
>> Indexes are moved separte table space.
That's only for easier management, not performance!
***********************************
>> Kindly help
Start by revealing the internal execution plans and
compare the 10g one with the 11g one!CODE
set autotrace on
SELECT index_name, uniqueness
FROM SYS.all_indexes
WHERE table_owner = 'CMATISPROD' AND table_name = 'EXPRESSIONS';
These are dictionary queries against complex views!
Try analyzing the dictionary tables/indexes with dbms_stats:CODE
exec dbms_stats.gather_schema_stats('SYS');
For a complete method, see my book "Otale Tuining: The Definitive Reference":
http://rampant-books.com/book_1002_oracle_...ence_2nd_ed.htmLet me know of this helps . . .