This content originally appeared on DEV Community and was authored by abdullah khrais
CREATE USER C##YOUR_NAME IDENTIFIED BY YOUR_PASSWORD;
grant unlimited tablespace to C##YOUR_NAME;
grant resource, connect, dba to C##YOUR_NAME;
This code needs to be executed by an admin user.
This content originally appeared on DEV Community and was authored by abdullah khrais