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

Thread: ORA-12500: TNS:listener failed to start a dedicated server process

Threaded View

  1. #7
    Join Date
    Nov 2002
    Location
    New Delhi, INDIA
    Posts
    1,796
    change
    ORA8.0.3 TNSNAMES.ORA

    TEST92 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.18.50.37)(PORT = 1521))
    )
    (CONNECT_DATA = (SERVICE_NAME = TEST92)
    )
    )

    to

    TEST92 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.18.50.37)(PORT = 1521))
    )
    (CONNECT_DATA = (SID = TEST92)
    )
    )

    if you want to use only one listener then

    go to the registry

    HKEY_LOCAL_MACHINE>SOFTWARE>ORACLE
    create a new string value
    TNS_ADMIN and insert $ORACLE_HOME/network/admin as value

    where $ORACLE_HOME is 9i home

    and stop the 8.0.3 listener...

    use 9i sqlplus as it incorporates all 8i sqlplus features and more...
    Last edited by adewri; 01-30-2003 at 04:30 PM.
    Amar
    "There is a difference between knowing the path and walking the path."

    Amar's Blog  Get Firefox!

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