Hi,
Hi, if tcpListenDrop increase means that your database is receiving a high number of connect request on database listener. Default value of max unfinished connections that can be handled by Oracle Listener simultaneously is 5.
To increase this value, use the QUEUESIZE parameter on listener.ora.
eg.:
[...]
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = XXXXX)(PORT = 1521)(QUEUESIZE = 64))
[...]
The max value that QUEUESIZE can be configured is limited by tcp_conn_req_max_q (default value is 128)
I think that queuesize in 64 will increase the listener throughput and avoid tcpListenDrop.
Regards