It seems, that DB2 creates new process for each connection when running java stored procedures in it (for example, procedures, which are called from trigger on some table update event).
The question is: is any way for running all java stored procedures in single process, so we could share static values between them?
It seems, that DB2 creates new process for each connection when running java stored
Share
Unfortunately, I have to give a negative answer to my own question.
According to this paper: Static and non-final variables in a Java routine exactly what I’d like to do is impossible.