Hi,
I am looking a simple query SELECT * FROM TABLE_COLLECTION;. It runs very slow compared at the same query using all columns but the collection one.
I ran the SELECT * FROM TABLE_COLLECTION; in sqlplus and runs fast as normal.
What can we do to improve the execution?
Slow with all fields including collection: 30.995 seconds. 400 rows.
All columns but the collection: 0.806 seconds 400 rows.
A user type used to define the collection field: Create or Replace noneditionable type tms_email as table of varchar2(150);
I am looking a simple query SELECT * FROM TABLE_COLLECTION;. It runs very slow compared at the same query using all columns but the collection one.
I ran the SELECT * FROM TABLE_COLLECTION; in sqlplus and runs fast as normal.
What can we do to improve the execution?
Slow with all fields including collection: 30.995 seconds. 400 rows.
All columns but the collection: 0.806 seconds 400 rows.
A user type used to define the collection field: Create or Replace noneditionable type tms_email as table of varchar2(150);
Last edited: