I will explain Grant Resource Role in Oracle in this post.
Grant Resource Role
When you create a new user in the Oracle database, user want to perform some action like Create table, Create trigger under its own schema. To do these actions, you need to grant the user with Resource role.
Resource Role has the following priviliges.
select privilege from dba_sys_privs where grantee = 'RESOURCE': PRIVILEGE -------------------------------------- CREATE TYPE CREATE TABLE CREATE CLUSTER CREATE TRIGGER CREATE OPERATOR CREATE SEQUENCE CREATE INDEXTYPE CREATE PROCEDURE
You can grant this role to any user as follows.
SQL> grant resource to username;
SQL> grant resource to mehmet;
Resource Role – Unlimited Tablespace Privilige
When you grant any user with RESOURCE role, the user has the UNLIMITED TABLESPACE system privilege is explicitly granted.
If you want to learn more details about Oracle priviliges and grant, you should read the following post.
Do you want to learn Oracle Database for Beginners, then Click and read the following articles.
Oracle Tutorial | Oracle Database Tutorials for Beginners ( Junior Oracle DBA )