SQL Guide : Using SQL for database administration : Managing user privileges and roles : Creating roles
  
Creating roles
CREATE ROLE rolename;
The following example creates a new user role named GUEST_USERS.
CREATE ROLE GUEST_USERS;
See also
Managing user privileges and roles