MAXHANDS (Maximum Open Handles) is the queue manager parameter that limits the number of handles that any one process can have at the same time. The details relating to it are as follows: Setting MAXHANDS: Alter the MAXHANDS queue manager parameter using the MQSC alter queue manager command. Example: alter qmgr maxhands (300) On Windows you can also use the WebSphere MQ Explorer to alter the queue manager's Max handles, extended property. MAXHANDS(integer): The maximum number of open handles that any one task can have at the same time. This is a value in the range zero through 999 999 999. For clarification: MAXHANDS refers to the maximum number of objects that a single connection can have open at the same time. So, if an application thread issues an MQOPEN for a queue, that counts as 1, and so on for each queue that is opened in that thread. A separate thread in the same or in a different process also has its own MAXHANDLES objects that it can open. The