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

Thread: problem with listener

Threaded View

  1. #10
    Join Date
    Sep 2001
    Location
    Düsseldorf, Germany.
    Posts
    588
    Check if the service_name parameter specified in listener.ora is same as that of in init.ora (parameter service_names)

    If you haven't specified SERVICE_NAMES parameter in init.ora then change SERVICE_NAME of tnsnames.ora to SID

    Code:
    listener.ora
    
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS_LIST =
            (ADDRESS = (PROTOCOL = TCP)(HOST = stmn)(PORT = 1521))
          )
        )
      )
    
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = orcl)
          (ORACLE_HOME = /opt/oracle/product/8.1.6)
        )
      )
    
    tnsnames.ora
    
    ora4 = 
    (DESCRIPTION =
     (ADDRESS_LIST =
       (ADDRESS =
          (COMMUNITY=TCP.world)
          (PROTOCOL=TCP)(Host=stmn)
          (Port=1521)
        )
     )
     (
      CONNECT_DATA=(SID=orcl)
     )
    )
    HTH

    Sameer
    Last edited by Sameer; 11-05-2002 at 08:25 AM.

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