Once I use jdbc with oracle driver and run select query is the result of the query is stored in the server of oracle memory or file system or temp table ?
and once I
After you execute the query, the data is returned to the JVM. The JVM handles all the data I/O from that point.