Document ID: 16886.1
Subject: Example INIT.ORA Parameters for MTS (Unix)
Last Modified: 08 Dec 94
Author: RPOWELL
# ------------------------------------------------------------------------
# init.ora extension for MTS (Multi-Threaded Server)
# ------------------------------------------------------------------------
#
mts_service= "MV713" #<-- Use YOUR OWN service name here
# The line below tells the dispatchers where the listener is so they
# can call it to register this service. It *MUST* match a listener.ora
# listen address
#
mts_listener_address="(ADDRESS=(PROTOCOL=ipc)(key=700))"
mts_dispatchers= "ipc, 1" #<-- Start 1 IPC dispatcher
mts_dispatchers= "tcp, 1" #<-- Start 1 TCP dispatcher
mts_max_dispatchers=10 #<-- No more than 10 dispatchers
mts_max_servers=10 #<-- No more then 10 shared servers
mts_servers=4 #<-- Start with 4 shared servers
# ------------------------------------------------------------------------