- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- oracle database connected in ideal instance
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-25-2006 05:24 PM
тАО08-25-2006 05:24 PM
oracle database connected in ideal instance
Pl. guide me how to solved this problem.
thanks in advance to all
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-25-2006 05:33 PM
тАО08-25-2006 05:33 PM
Re: oracle database connected in ideal instance
please post the exact error message. (copy-paste)
Also, is the listener running?
(to check run: lsnrctl status)
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-25-2006 05:38 PM
тАО08-25-2006 05:38 PM
Re: oracle database connected in ideal instance
How exactly users connect? First telnet/ssh and then oracle login? This more seems as a oracle problem. You can check general errors in syslog.log/dmesg.
May be putting this post in database section will help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-25-2006 07:30 PM
тАО08-25-2006 07:30 PM
Re: oracle database connected in ideal instance
Could you look on ownership and permissions of $ORACLE_HOME/bin/oracle* files and compare them with the output:
-rwsr-s--x 1 oracle dba 179813784 Sep 15 2005 oracle*
-rwsr-s--x 1 oracle dba 179813784 Sep 15 2005 oracleO*
Sometimes relink and running of root.sh can help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-27-2006 09:43 PM
тАО08-27-2006 09:43 PM
Re: oracle database connected in ideal instance
Error is:
export ORACLE_SID=SWOM
AKJ @ INDRSWIFT01: /home/AKJ>sqlplus '/as sysdba'
SQL*Plus: Release 9.2.0.5.0 - Production on Mon Aug 28 15:01:57 2006
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to an idle instance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2006 09:30 AM
тАО08-28-2006 09:30 AM
Re: oracle database connected in ideal instance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2006 12:55 PM
тАО08-28-2006 12:55 PM
Re: oracle database connected in ideal instance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2006 02:15 PM
тАО08-28-2006 02:15 PM
Re: oracle database connected in ideal instance
I hope the message is idle.
Of so, the solution is to start the database as noted above.
For the sake of completeness, an upgrade to the latest oracle patch set, as difficult as I know that is would be helpful in elminating fugure issues.
I'm guessing this is actually an environment problem and you connect to an idle instance because the ORACLE_SID variable is incorrectly set.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2006 02:45 PM
тАО08-28-2006 02:45 PM
Re: oracle database connected in ideal instance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2006 03:19 PM
тАО08-28-2006 03:19 PM
Re: oracle database connected in ideal instance
1. First check the Instance is up
ps -ef|grep ora_
a list of process showing,
see whether there are your SID process
e.g. SID=ORCL,
ora_pmon_ORCL
2. Check your listener is up
ps -ef|grep tns
3. Check your environment variable
ORACLE_SID=
ORACLE_HOME=
PATH=$ORACLE_HOME/bin
optional TNS_ADMIN=$ORACLE_HOME/network/admin
4. Check your listener.ora, tnsnames.ora and sqlnet.ora
5. Try sqlplus on same machine to connect the instance as oracle
6. Try sqlplus on same machine to connect the instance as other unix a/c with dba group
Normally, step 5 should work, if not, please post information from step 1 to step 4.
I assume your case is step 6.
If step 5 succes (because of IPC connection), and step 6 not.
This is because the variable setting is not yet exported in ksh / sh (but is auto set in csh).
There is another variable TWO_TASK you could make use to set to ORACLE_SID, such that it connects through listner.
Hopes that help.