DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: Dedicated and MTS Connections

  1. #1
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092

    I want a database to accept both MTS and Dedicated Server connections. Users that I want to use MTS will go through one tnsnames.ora alias and those who use Dedicated Servers will use a different alias. For example, I want some users to:

    sqlplus user1/pass1@mts.prod

    and other users to:

    sqlplus user1/pass1@dedicated.prod

    Has anybody ever done this before? Any suggestions?
    Jeff Hunter

  2. #2
    Join Date
    Apr 2000
    Location
    roma
    Posts
    131
    you have to specify tow alias in your tnsnames , in the second alias have to specify the parameter SERVER=DEDICATED

  3. #3
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092

    Yes, Yes, Yes... That's it.

    I changed the tnsnames.ora entry from:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=myhost)(PORT=1521))(CONNECT_DATA=(SID=dev)))

    to

    (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=myhost)(PORT=1521))(CONNECT_DATA=(SID=dev)(SERVER=DEDICATED)))

    Thanks!
    Jeff Hunter

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width