Question: How can I find out the maximum amount of connections allowed on a DB2 database? Answer: Work through this example to analyse the connections. The example indicates support for 68 (with room to grow) and the high watermark is 38. To check at a database level check MAXAPPLS . This parameter specifies the maximum number of concurrent applications that can be connected to a database. db2 get db cfg for DB_NAME | grep 'MAXAPPLS' --returns Max number of active applications (MAXAPPLS) = AUTOMATIC(68) To check at an instance level check : MAX_COORDAGENTS , which is used to limit the... Read more →