The data_engine probe is running but continuously reports the error below in the log:
OCI_ERROR - ORA-12516: TNS:listener could not find available handler with matching protocol stack
Any UIM version with Oracle database
This issue is sometimes seen when the number of sessions allowed on the UIM database has exceeded and DBA should be engaged to validate the limit
Helpful queries:
Inactive session count per system names: select username,machine,count(1) from gv$session where status='INACTIVE' group by username,machine;
Total inactive session: select count(*) from gv$session where status='INACTIVE'