DEV Community

Hisyam Johan
Hisyam Johan

Posted on

Create Oracle DB User

create user <user.name> IDENTIFIED BY <user.password>;
grant connect,resource,dba to <user.name>;
grant create session, grant any privilege to <user.name>;
grant unlimited tablespace to <user.name>;

Top comments (0)