Question 1 of 25
Select 3Which three functions are performed by dispatchers in a shared server configuration? (Choose three.)
Show answer
How others answered
- ACF100%
Explanation
A is correct. All dispatchers are required to write incoming requests to a common response queue, which the (idle) shared server processes will monitor and pick up. B is wrong. Each dispatcher has it's own response queue. C is correct. This is the main purpose of dispatchers in a shared server architecture. D is wrong. Connection input requests are handled by the listener and, shared server processes do not have their own input queues, they monitor the common input queue. E is wrong. Shared server responses cannot be broadcasted to all connections. F is correct. Shared server responses must be sent back to the requester on it's own connection. Reference: https://docs.oracle.com/en/database/oracle/oracle-database/19/cncpt/application-and-networking-architecture.html#GUID-EC8F8778-02B7-4CF9-9E6F-A5D88C777235
Adapted from community discussion by Franky_T · 2023-04-12 · 7 community upvotes. Third-party contribution; reviewed by our quality filter, not independently verified.
Supporting references



