This is the description of the error:
Code:
* If <protocol> = TCP/IP, <function> = recv, <rc1> =
ETIMEDOUT/WSAETIMEDOUT, AIX (78), Windows (10060), linux (110), SUN
(145), HP (238), the connection was dropped because the remote system
failed to respond. Possible causes:
* SQLCancel() was called from a CLI application because the
application set the Query Timeout value or there was an explicit
cancel request. Adjust the Query Timeout value set by the
application. If this is not possible, adjust the
QueryTimeoutInterval setting in the db2cli.ini file. Use
QueryTimeoutInterval=0 (no timeout) in the db2cli.ini file to test
whether QueryTimeout is the cause of your application's failure.
The failure of an existing connection is expected in this
scenario.
* The network is slow, or the server might be too busy to respond to
the recv request within a reasonable amount of time, you might
need to adjust your system TCP recv timeout value.
The error basically states that you timed out. My guess is that the client started communicating with the server, then the server crashed, leaving the client waiting for a reply. After 9 minutes, the client timed out and gave you this error. You would not get an error message immediately since the communication had already commenced.
Andy