|
Re: how can I setup my dba for oracle 10g ? [message #182287 is a reply to message #182256] |
Fri, 14 July 2006 02:59 |
pbusolo
Messages: 4 Registered: July 2006
|
Junior Member |
|
|
hi
As per what i get from ur request....i suggest you open the pl/sqlplus login, login with username:sysdba password:*****(use the one you set while installing)
you can then create a user with dba role by following this sql statements
SQL> CREATE USER yourname IDENTIFIED BY yourpassword;
SQL> GRANT DBA TO yourname;
you can then exit and try loggin in ...
|
|
|
|