User HR has CREATE SESSION, CREATE ANY TABLE and UNLIMITED TABLESPACE privileges.
User SCOTT has CREATE SESSION, CREATE TABLE and UNLIMITED TABLESPACE privileges.
HR successfully executes this statement:
HR attempts to execute:
1. INSERT INTO scott.products VALUES (1, 'LAPTOP');
SCOTT attempts to execute:
2. SELECT * FROM products;
3. INSERT INTO scott.products VALUES (2, 'HDD');
4. CREATE SYNONYM prod FOR products;
Which will execute successfully?