Which three statements are true when the listener handles connection requests to an Oracle 12c database instance with multithreaded architecture enabled In UNIX?

Which three statements are true when the listener handles connection requests to an Oracle 12c
database instance with multithreaded architecture enabled In UNIX?

Which three statements are true when the listener handles connection requests to an Oracle 12c
database instance with multithreaded architecture enabled In UNIX?

A.
Thread creation must be routed through a dispatcher process

B.
The local listener may spawn a now process and have that new process create a thread

C.
Each Oracle process runs an SCMN thread.

D.
Each multithreaded Oracle process has an SCMN thread.

E.
The local listener may pass the request to an existing process which in turn will create a thread.

Explanation:



Leave a Reply 5

Your email address will not be published. Required fields are marked *


Vladimir

Vladimir

are there any doc for this question ?

elcid

elcid

ACE

Each OS process also runs a special thread called SCMN, which is basically an internallistener thread. All thread creation is routed through this thread.

legos21

legos21

ACE
NO B. The database listener does not spawn threads, instead the connection requests, handled by a dispatcher, are handed out to the spawning thread for the given instance. Each OS process running multiple Oracle processes also run an internal listener thread called SCMN. All thread creation is routed through this thread.
NO D. Each OS process also runs a special thread called SCMN that is basically an internal listener thread. All thread creation is routed through this thread.
Each multithreaded Oracle process has an SCMN thread.
E. The local listener may pass the request to an existing process which in turn will create a thread.