when i try to retrieve data (sub_id + something else except tier column) from a large resultset i got a very good time:
Load ResultSet took 8 seconds for 892098 rows
But when i try to retrieve data from the tier column ( + sub_id) it could take up to 30 minutes.
Load ResultSet took 1925 seconds for 892098 rows
Both for sub_id and tier I used the method ResultSet.getString(columnName)
Has anyone faced this issue before? Please help me out. Thanks
Re: difference of performance when retrieving different column from resultset
I didn't found the problem but i found a workaround of my issue
Instead of using ResultSet.getString(columnName) method i used ResultSet.getCharacterStream(columnName)
Bookmarks