On Saturday, June 23, 2012 12:50:13 AM UTC+3,
ma...@rohde-net.us wrote:
> We have recently started migrating more applications out of the 4GL to ODBC/JDBC and are seeing performance issues on the database.
>
> Are here any best practices and tuning recommendations to enhance JDBC connection performance and keep it from impacting the other clients?
Can you identify the exact bottleneck ? performance issues sounds too general.
Do the queries run slow? Are there lengthy locks?
Is there connection lag ? (maybe use JDBC connection pooling)
Is the JDBC driver tuned?
Was the 4GL code written in procedural fashion and tighten up to select loops? then as Roy pointed out,you may have to switch to set based logic instead of following a similar 'cursor based'/procedural logic in the new app too
Is it ODBC or JDBC? because the ODBC drivers are notorious for performing worse no matter the underlying dbms