Hi ,
I did check the query response time. Response time is less than a second. ( Just i executed select sysdate from dual ). But when i execute this query and debug through eclipse
Code:
select
MSA,
HPI,
LAST_UPDATED,
HPX,
LAST_ACTUAL,
YMX
from
table_name
order by
MSA,
HPI
It takes 9 mins.
When i run the same query using toad or dbartisan, it takes 1:17 mins, this table contains around 91680 records.
Usually how much time hibernate takes to construct Entity for all these records. hw to check.... any idea to reduce the time.
thanks in advance.