hey mrjoltcola...
thx so much
1. localhost.localdomain
2. 1521
3. DEMO11
all system wide variables are set correctly
:-)
Main Topics
Browse All TopicsHello experts,
I open SQLDEVELOPER GUI and try to connect to Oracle (host); but I am getting a network adapter issue... any ideas how I can troubleshoot this?
thx
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
thx mrjoltcola...
the local database DEMO11 was configured during initial install.
I am on the same machine where Oracle resides.
OS: centOS 5.3
see command results:
the weird part of all this is that the DB has been working ok for days... now, all of sudden I am having problems... this morning when I logged in, problems started... no changes made to it at all....
Invoke NETCA and drop the listener.
Create new one, but first check for firewalls.
Firewalls should be OFF.
Also in Listener.ora register the database:
Backup LISTENER.ORA file!!!!!!!
In ...\network\admin open listener.ora
see
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = D:\Ora10g)
(PROGRAM = extproc)
)
(SID_DESC =
(SID_NAME = test)
(ORACLE_HOME = D:\Ora10g)
)
)
Add the entry
(SID_DESC =
(SID_NAME = test)
(ORACLE_HOME = D:\Ora10g)
)
with regard to the particular Oracle Home and SID Name.
In Oracle 11g you have to create from scratch in the listener.ora file the section
SID_LIST_LISTENER =
&..
mentioned above.
Restart the listener:
c:>lsnrctl stop
c:>lsnctl start
thx mrjoltcola... I can't believe that line was not commented. I looked at that file like a thousand times.... I also cleaned the port line (moved it to same line)...
thx shwerter... not sure if I understand "Invoke NETCA and drop the listener"
1. Firewall is off
2. added SID_LIST_LISTENER to listener.ora (see below)
3. then, I tried to stop lsnrctl and got message below
everything was working just fine and all of the sudden it freaked out.. this is simulation environment I do shut things down every day...... does this happen if you don't shut down properly?
:-( tears
thx
Hello mrjoltcola and shwertner,
I got sqldeveloper to connect... may be it was the listener.ora when added SID_LIST_LISTENER... to be honest I am not sure...
I think my problem is the process to start/shutdown Oracle.
here is what I did to make it work:
TO START:
$ORACLE_HOME/bin
1. . oraenv <enter SID>
2. sqlplus "/ as sysdba"
SQL> startup
SQL> exit
3. lsnrctl start
lsnrctl exit
4. emctl start dbconsole
5. launch sqldeveloper
TO SHUTDOWN:
1. exit sqldeveloper
2. at terminal
. oraenv <enter SID>
3. sqlplus "/ as sysdba"
SQL>shutdown immediately
SQL>exit
4. lsnrctl stop
lsnrctl exit
5. emctl stop dbconsole
is this the process you guys follow to start/shutdown the Oracle "uncomplicated" beast?
thx
>>is this the process you guys follow to start/shutdown the Oracle "uncomplicated" beast?
Actually, no I automate the startup/shutdown using the dbstart utility. Its a bit of a different question, but I can point you through to it. You might not like it. If you ask a related question ro call my attention to it I'll work through it with you. Takes 5 minutes or so for an experienced Oracle / UNIX admin, but the first time its a bit mysterious for some.
On UNIX it depends on the /etc/oratab and a script in your init scripts (/etc/init.d) that calls $ORACLE_HOME/dbstart
As far as your original, problem, I think perhaps it was a simple cut and paste error when you edited the file. Who knows?
Business Accounts
Answer for Membership
by: mrjoltcolaPosted on 2009-08-06 at 15:30:56ID: 25038725
Can you show the parameters you have used?
Did you provide these 3?
1) hostname
2) port
3) SID
Can you ping the hostname from the command line?