-- Create the user
create user TEST_USER identified by TEST_USER
default tablespace USERS
temporary tablespace TEMP
profile DEFAULT;
-- Grant/Revoke role privileges
grant dba to TEST_USER ;
-- Grant/Revoke system privileges
grant unlimited tablespace to TEST_USER ;