I would like to recover the data from Oracle database using JDBC but using chunks. In contrast with MySQL and other databases ORacle do not allow easily to recover only a subset of the rows from a query. Any suggestion?
Should be possible to use Java 8 API to stream the JDBC.
I try to use a pagination implementation. However, pagination always download all the results into resultset and the only thing you avoid is the mapping.
I would like to retrieve 200'000'000 of records in chunk of 1'000'000.