Which connection method guarantees that this requirement is met?

The ORCL database is configured to support shared server mode. You want to ensure that a user
connecting remotely to the database instance has a one-to-one ratio between client and server
processes.
Which connection method guarantees that this requirement is met?

The ORCL database is configured to support shared server mode. You want to ensure that a user
connecting remotely to the database instance has a one-to-one ratio between client and server
processes.
Which connection method guarantees that this requirement is met?

A.
connecting by using an external naming method

B.
connecting by using the easy connect method

C.
creating a service in the database by using the dbms_service.create_service procedure and
using this service for creating a local naming service”

D.
connecting by using the local naming method with the server = dedicated parameter set in the
tnsnames.ora file for the net service

E.
connecting by using a directory naming method

Explanation:



Leave a Reply 12

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


Dr. Oracle

Dr. Oracle

They ask for one method. So I think just D.

abhishek

abhishek

D is the only answer which is correct. Create service procedure dont have any attribute for dedicated and share.
Also this type of connection is maintained at connection level.

Jairo

Jairo

I think B and D. Because with easy connection you can specify server type: dedicaded or shared.

David Mateluna

David Mateluna

D, E:

D: If the database is configured for a shared server and a particular client requires a dedicated server, then you can configure the client to use a dedicated server in one of the following ways:

You can configure a network service name with a connect descriptor that contains (SERVER=dedicated) in the CONNECT_DATA section.
https://docs.oracle.com/database/121/NETAG/dispatcher.htm#NETAG327

E: If shared server is configured in the initialization parameter file, you can select Dedicated Server to force the listener to spawn a dedicated server, bypassing shared server configuration. If shared server is configured in the initialization parameter file and you want to guarantee the connection always uses shared server, select Shared Server.
https://docs.oracle.com/cd/B19306_01/network.102/b14212/naming.htm#i513222