DSNA677I csect-name THE application-type procedure-name CAN ONLY CREATE threads-created OF threads-requested THREADS
Explanation
There are not enough resources available to create all the requested threads.
- csect-name
- The name of the control section that issued the message.
- application-type and procedure-name
- The type and name of the application.
- ADMIN SCHEDULER
- The procedure is the administrative task scheduler. The name that is provided is the name of a scheduled task.
- STORED PROCEDURE
- The procedure is a stored procedure. The name that is provided is the name of the stored procedure.
- threads-created
- The number of threads that were created.
- threads-requested
- The number of threads that were requested.
System action
The administrative task scheduler or stored procedure terminates.
System programmer response
Take the action indicated by the value of application-type:
- ADMIN SCHEDULER
- Either increase system resources to allow the administrative task scheduler to create the number of threads needed, or lower the maximum number of threads that the administrative task scheduler is allowed to use. The parameter MAXTHD controls the maximum number of threads that the administrative task scheduler is allowed to use.
- STORED PROCEDURE
- Either reduce the number of parallel threads, or increase the value of the CTHREAD subsystem parameter to allow the stored procedure to create the number of threads indicated by the value of threads-requested.
Severity
12 (severe error)