I'm currently using SQuirrel SQL for queries on DB2 with query acceleration turned on (IBM IDAA). I found DBeaver recently and I really like it and love it. I tried to execute a query on DB2 with it, but I don't think it supports query acceleration. Can someone confirm that this works?
I had to manually load the IBM DB2 drivers to get DBeaver work with our server (db2jcc.jar - http://www-01.ibm.com/support/docview.wss?uid=swg21363866). Just in case it's a driver issue.
This is the SQL query:
SET CURRENT QUERY ACCELERATION = ALL;
SELECT * FROM SALES.SALES_PRODUCTS WITH ur;
The query executes in SQuirrl in few miliseconds, while in DBeaver it takes minutes. The same as if the query were set to ACCELERATION = NONE;
in SQuirrl.