Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: I can't startup Oracle. Can somebody help me?
"T-Online" <thomasmichaelis_at_t-online.de> wrote in message
news:983l7m$gau$01$1_at_news.t-online.com...
> When I startup oracle with user=oracle & svrmgr i have the error
ORA-01012.
> What is the problem an what can I do?
> Thanks for help!
The following statements assume you are using a unix OS.
The error that you're getting is a "not logged in" error.
Try logging in using sqlplus as user "system" with password "manager".
Like this...
$ sqlplus system/manager
Does that work?
If not, are you sure oracle is running? Try this...
$ svrmgrl
connect internal as sysdba;
shutdown;
startup;
You should see Oracle shutting down (if it's not already down) and then starting back up. Then try logging in as system/manager and see what happens. If none of this works, please post (or email) the exact text you see on the screen.
![]() |
![]() |