-- Create the user
create user INF02
identified by ""
default tablespace USERS
temporary tablespace TEMP
profile DEFAULT
password expire
quota unlimited on users;
-- Grant/Revoke role privileges
grant connect to INF02;
grant dba to INF02;
-- Grant/Revoke system privileges
grant create database link to INF02;
grant create materialized view to INF02;
grant create procedure to INF02;
grant create profile to INF02;
grant create role to INF02;
grant create sequence to INF02;
grant create session to INF02;
grant create table to INF02;
grant create trigger to INF02;
grant create type to INF02;
grant create view to INF02;
grant select any dictionary to INF02;
grant select any sequence to INF02;
grant select any table to INF02;
grant unlimited tablespace to INF02;