Operating System - HP-UX
1752302 Members
4629 Online
108786 Solutions
New Discussion юеВ

Re: LOST ORACLE DATABASE ADMIN PASSWORD

 
Deanna Tran
Frequent Advisor

LOST ORACLE DATABASE ADMIN PASSWORD

I tried to login to sqlplus to start up the database, but i was unable to do so...
this is what i did
1.login as root
2. su - oracle
3. sqplus /nolog
4. CONNECT SYS/CHANGE_ON_INSTALL AS SYSDBA
5. give me this error message :
ERROR:
ORA-12705: invalid or unknown NLS parameter value specified

So now i need help.....
...In addition, I have read through this thread...I wasn't able to find svmgrl (server manager) in my system?...can you help me with this also???
9 REPLIES 9
Eric Ladner
Trusted Contributor

Re: LOST ORACLE DATABASE ADMIN PASSWORD

Try this:

su - oracle
sqlplus /
alter user system identified by foo;
alter user sys identified by foo;

Also, it's svrmgrl located in $ORACLE_HOME/bin. My apologies if you typoed in the original message.
Sanjay_6
Honored Contributor

Re: LOST ORACLE DATABASE ADMIN PASSWORD

Deanna Tran
Frequent Advisor

Re: LOST ORACLE DATABASE ADMIN PASSWORD

hi,
I am still unable to locate the svmgrl file
....i tried everythings that you have suggested still unsuccessful...

the $HOME_ORACLE/bin you said where the svmgrl file is at...I search in there ...and nothing ...was found...
SHABU KHAN
Trusted Contributor

Re: LOST ORACLE DATABASE ADMIN PASSWORD

Hi,

Are you looking for the right binary as Eric pointed out .. it is svrmgrl and not svmgrl ?

-Shabu
SHABU KHAN
Trusted Contributor

Re: LOST ORACLE DATABASE ADMIN PASSWORD

Hi,

svrmgrl
SVRMGR>connect internal
SVRMGR>startup

To shutdown:
SVRMGR>connect internal
SVRMGR>shutdown normal
or
SVRMGR>shutdown immediate

you could do a help at the prompt for more information
SVRMGR> help
The following are SIMPLIFIED syntax descriptions. For complete syntax
descriptions, please refer to the Oracle Server Manager User's Guide.

STARTUP [DBA] [FORCE] [PFILE=filespec] [EXCLUSIVE | SHARED]
[MOUNT dbname | OPEN dbname] [NOMOUNT]

SHUTDOWN [NORMAL | IMMEDIATE | ABORT]

MONITOR For graphical modes only, bring up a monitor

ARCHIVE LOG [START] [STOP] [LIST] [NEXT] [] [ALL] ['destination']

RECOVER { [DATABASE [MANUAL] ] | [TABLESPACE ts-name [,tsname]] }

CONNECT [username [/password] ] [INTERNAL] ['@'instance-spec]
DISCONNECT

SET options: INSTANCE, ECHO, TERMOUT, TIMING, NUMWIDTH, CHARWIDTH
SHOW LONGWIDTH, DATEWIDTH, AUTOPRINT and for SHOW: ALL, SPOOL

EXIT
REM
SQL statements can also be executed.

-Shabu
Eric Ladner
Trusted Contributor

Re: LOST ORACLE DATABASE ADMIN PASSWORD

Oops.. I'm sorry. I thought you had a running database and needed to change the password for system and sys.

If you have an Oracle 8.1 or higher database, you don't need svrmgrl anyway.

To startup the database:

# su - oracle
# # Make sure your ORACLE_HOME and ORACLE_SID are set correctly
$ sqlplus internal
(It should say something about "connected to an idle instance"
SQL> startup
...
SQL> exit

I'm not sure about oracle 8.0. I can't remember off the top of my head if sqlplus was able to function like that under that level. Wouldn't hurt to try.

If it complains the database is running, do a 'shutdown abort' then a startup, but only if you have verified that there are NO database processes running (i.e. 'ps -eaf | grep ora_' returns nothing)
Deanna Tran
Frequent Advisor

Re: LOST ORACLE DATABASE ADMIN PASSWORD

I echo $ORACLE_HOME and i know it is in u01 ...

this is what i did
1. echo $ORACLE_HOME/bin
2. svrmgrl
3. still can't find that
Deanna Tran
Frequent Advisor

Re: LOST ORACLE DATABASE ADMIN PASSWORD

When i did ps -ef | grep ora
I saw a lot of processor running...
I currently have oracle 9i on my system...
Steven Sim Kok Leong
Honored Contributor

Re: LOST ORACLE DATABASE ADMIN PASSWORD

Hi,

Run $ORACLE_HOME/bin/svrmgrl in full:

$ $ORACLE_HOME/bin/svrmgrl

Hope this helps. Regards.

Steven Sim Kok Leong