Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: How to Get a Dedicated Server When Running MTS

Re: How to Get a Dedicated Server When Running MTS

From: Gerard H. Pille <ghp_at_santens.be>
Date: 1997/09/15
Message-ID: <01bcc1e1$e4e75720$7b1340c0@pcghp.santens.be>#1/1

Ask for it in connect_data

tnsnames.ora
yourinst.world =
  (DESCRIPTION =
    (ADDRESS_LIST =

        (ADDRESS = 

(COMMUNITY = tcp.world)
(PROTOCOL = TCP)
(Host = yourhost)
(Port = 1521)
) (ADDRESS =
(COMMUNITY = tcp.world)
(PROTOCOL = TCP)
(Host = yourhost)
(Port = 1526)
)

    )
    (CONNECT_DATA =
      (SID = yourinst)
      (server=dedicated)

    )
  )

Kind regards,

Gerard

Dave McLaughlin <davemc_at_umich.edu> schreef in artikel <3419bbd6.259397093_at_news.itd.umich.edu>...

> I have a 7.1.4 server running MTS.  There is a batch process running on
> another machine which makes a lot of calls to this server.  I have heard
> that it is possible to specify something extra in the connect string to
> request a dedicated server process, but I can't find it now...  I did
 find
> what looked like the answer in a paper presented at OOW/IOUW '96 by  Donald
> K. Burleson, Designing Effective Distributed Systems Using SQL*Net.  At
> the bottom of page 6, he seems to imply that prefixing the the SID in the
> connect string with "d_" will tell the listener to spawn a dedicated
> server process.  I tried this, but it didn't work -- got a message
> indicating a failure in TNS name resolution.
> 
> So, is there anyway that I can do this without changing the SQLNET.ORA
> file or something else in the environment?
> 
> TIA for any ideas on this...
Received on Mon Sep 15 1997 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US