Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ORA-12514

Status
Not open for further replies.

williey

Technical User
Jan 21, 2004
242
I had successfully install Oracle 11g under Fedora 7 environment. Connection Enterprise Manager was successful. So was connection to database.

However I encountered ORA-12514 when trying to connect a week later. Note: I had not boot into the machine since the install.

LISTENER.ORA
Code:
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = PLSExtProc)
      (ORACLE_HOME = /u01/app/oracle/product/11.1.0/db_1)
      (PROGRAM = extproc)
    )
    (SID_DESC =
      (GLOBAL_DBNAME = TEST.WORLD)
      (ORACLE_HOME = /u01/app/oracle/product/11.1.0/db_1)
      (ORACLE_SID = TEST)
    )
  )

LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost.localdomain)(PORT = 1521))
    )
  )

TNSNAMES.ORA
Code:
LISTENER = 
  (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))

TEST = 
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost.localdomain)(PORT = 1521))
    )
    (CONNECT_DATA =
      (SERVICE_NAME = TEST.WORLD)
    )
  )

SQLNET.ORA
Code:
SQLNET.AUTHENTICATION_SERVICES= (NONE)

NAMES.DIRECTORY_PATH= (TNSNAMES)

When I start up the listener, the following messages are displayed.

Code:
Services Summary...
Service "PLSExtProc" has 1 instance(s).
  Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service....
Service "TEST.WORLD" has 1 instance(s).
  Instance "TEST.WORLD", status UNKNOWN, has 1 handler(s) for this service....

Is there some setup missing? ORACLE_HOME and ORACLE_SID are globally defined in /etc/profile.



------------------------------------------
There are 10 kinds of people in this world. One that understands binary and the other one that does not.
 
Thanks I got it to work finally. I went through all the setup and got it to work.

Now I'm trying figure out why dbstart does not start the instance. it error out on ora-01031.

------------------------------------------
There are 10 kinds of people in this world. One that understands binary and the other one that does not.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top