Change Oracle from "Dedicated" Server to "Shared" Server

How to set the oracle from "Dedicated" to "Shared" server? What are all parameters needs to set to change the Oracle from "Dedicated" Server to "Shared" Server?

Questions by mah_mca

Showing Answers 1 - 1 of 1 Answers

1.To change from dedicated server to shared server add the following initialization parameters in the parameter file.

dispatchers='(protocol=TCP)(disp=5)'
max_dispatchers=150
shared_servers=5
max_shared_servers=100

2.shutdown and restart the database

3.To check if the listener is creating shared server connection use the following command
c:>lsnrctl services

4.client side changes.
  change the parameter SERVER = SHARED in tnsnames.ora file

SERVICENAME =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = IP ADDRESS)(PORT = 1521))
(CONNECT_DATA =
(SERVER = SHARED)
(SERVICE_NAME = SERVICENAME )
)
)

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions