- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: sqlplus system/manager
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
тАО05-31-2004 07:54 PM
тАО05-31-2004 07:54 PM
I try to connect ORACLE by sqlplus as system/manager, it's ok
I repeat the attempt on another system (maybe configured in another way) but it fails there
The databases are created in the same way, no password is provided for the system user
In the second case the error is:
ERROR: ORA-01034 ORACLE non available
If I repeat the command on the 2nd machine by using the "non admnistrator" user / password then it works fine
Where do I have to look for differences between the two systems?
What's the possible problem?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2004 08:02 PM
тАО05-31-2004 08:02 PM
Re: sqlplus system/manager
r these your steps:
oracle $ export ORACLE_SID=
oracle $ sqlplus "/ as sysdba"
SQL> start
SGA info
Database mounted
also, please:
oracle $ ps -ef|grep pmon
any of the instance running.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2004 08:17 PM
тАО05-31-2004 08:17 PM
Re: sqlplus system/manager
Do you provide the SID when logging or do you rely on the ORACLE_SID variable ? This is a possible source of error.
You could also log as the normal user, then try :
connect system/manager
and see if it's work then.
Cheers
Nicolas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2004 08:23 PM
тАО05-31-2004 08:23 PM
Re: sqlplus system/manager
On Unix:
$sqlplus '/ as sysdba';
On Win:
connect as "non administrator" and after that:
conn / as sysdba;
Are you using password files?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2004 08:27 PM
тАО05-31-2004 08:27 PM
Re: sqlplus system/manager
01034, 00000, "ORACLE not available"
// *Cause: Oracle was not started up. Possible causes include the following:
//The SGA requires more space than was allocated for it.
//The operating-system variable pointing to the instance is improperly defined.
// *Action: Refer to accompanying messages for possible causes and correct the problem mentioned in the other messages. If Oracle has been initialized, then on some operating systems, verify that Oracle was linked correctly. See the platform specific Oracle documentation.
Also check Alert_SID.log file for this instance for any clues.
sks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2004 08:33 PM
тАО05-31-2004 08:33 PM
Solutioncan you check if you can connect using a similar connection string:
connect system/manager@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=
this can help us in understanding what is reall happening.
regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2004 09:11 PM
тАО05-31-2004 09:11 PM
Re: sqlplus system/manager
may i know if your problem has been solve? if it has, which solution help?
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2004 09:25 PM
тАО05-31-2004 09:25 PM
Re: sqlplus system/manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2004 09:27 PM
тАО05-31-2004 09:27 PM
Re: sqlplus system/manager
the problem has been solved by using
sqlplus system/manager@@(DESCRIPTION =(ADDRESS =(PROTOCOL = TCP )(HOST = albh16 )(PORT = 1521))(CONNECT_DATA =(SID = dbsyml))
i.e. the full connection string
Thanks again