We have an utility which retrieves some data from DB2 (v 10.5 for AIX) database. After we had applied Fix Pack 8 to database (client and JDBC driver had been also updated) this utility didn’t work. There was the following error in log:
13:09:48,270 [INFO ] SMU {SCSExecute.Execute.java} 13:09:48,258 [ERROR ] org.apache.jackrabbit.core.fs.db.DatabaseFileSystem failed to initialize file system 13:09:48,277 [INFO ] SMU {SCSExecute.Execute.java} com.ibm.db2.jcc.am.SqlException: DB2 SQL Error: SQLCODE=-443, SQLSTATE=38553, SQLERRMC=SYSIBM.SQLTABLES;TABLES;SYSIBM:CLI:-514, DRIVER=3.69.66 As recommended here (http://www-01.ibm.com/support/docview.wss?uid=swg21369762) for similar cases we executed the following commands in DB2:
db2 connect to <databasename> db2 bind db2schema.bnd blocking all grant public sqlerror continue db2 terminate But it didn’t solve the issues.
What could we forget to do?
How could we check that bind command executed properly?
How could we try to solve the issue or reveal its root?