Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: username
> how an administrator of data base can make an username and password to
many
> people on oracle
Look in the docs (you can find them at http://technet.oracle.com) for the "create user" statement. In short:
create user <username> identified by <password>;
example:
create user 'JDoe' identified by '12345';
Do this from the SQL Plus or the SQL Plus Worksheet tools. Received on Tue Mar 20 2001 - 17:53:57 CST
![]() |
![]() |