I am trying to limit the result set to size without having to change every SQL statement from the application (at least for example). Therefore, adding a ROWNUM for each query is not an option.
I am looking more or less for some global parameter, or at least a session parameter (like SET ROWCOUNT in SQLServer).
The application uses the JDBC source to connect to Oracle, so I can set the parameter for the entire session in the JDBC SQL init pool.
source share