how to check the status of the concurrent manager
To check the status of the Oracle EBS concurrent manager, you can use either the application screen or a backend SQL query. Oracle’s admin window lets you view manager status directly and review active, migrating, terminating, or deactivated processes.
In the Oracle application
- Go to System Administrator responsibility.
- Open Concurrent > Manager > Administer.
- Review the status shown for each manager; you can also select a manager and view its details, processes, or requests.
From the backend
A common backend check is to query the concurrent manager tables to see the
manager name, running processes, target processes, and status. A recent
published example shows a query against apps.fnd_concurrent_queues and
related views to display the manager and decode its control status.
Example status logic
Typical statuses you may see include:
- Running
- Activating
- Suspending
- Terminating
- Node unavailable
Simple practical view
If you want a quick operational check, look for:
- Running processes matching the expected target.
- No node unavailable or terminated managers.
- Internal Manager and key standard managers showing active status.
If you need, I can format a ready-to-run SQL query for your Oracle EBS version.