Useful Oracle commands:
shell> sqlplus SYS@XE as SYSDBA
shell> sqlplus wenchen@XE
SQL> create user C##user_id identified by password container=all;
SQL> grant connect to C##wenchen container=all;
SQL> grant create table, create sequence, create session to C##user_id;
SQL> grant alter user, create procedure, create type to C##user_id;
SQL> grant create trigger, create view to C##user_id;
SQL> alter user C##user_id quota unlimited on users;
SQL> drop user C##user_id;
SQL> grant sysdba to C##user_id;
SQL> grant select any table to C##user_id;
SQL> grant create session to C##user_id with admin option;
// for not common user name like user.id but with limited functions
SQL> alter session set "_ORACLE_SCRIPT"=true;
SQL> drop user C##user_id cascade;
SQL> alter user C##jemilatu_razak identified by jemilatu6385 account unlock;
How to Create Users, Grant Them Privileges, and Remove Them in Oracle Database