Oracle 10g R2 login problem !!!!

hey oracle ppl ...
what is the user name and password and hot string to login in oracle 10g R2 as a DBA.
I tried sys as sysdba and password which i gave while installing ... it simply exits.
i also tried diff. combinations for DBA but none worked.
I am able to login using SYSTEM and password for my d/b. But its not DBA acnt.
Please tell me login name and password for DBA.
 
the current OS user that you r using should be part of DBA OS group ... add it to that group if not added by setup

that OS user has to be defined as externally identified oracle user.

Since u can logon using SYSTEM user ... use this

Code:
sqlplus "SYSTEM/PASSWORD as sysdba"
 
Back
Top