Answer:
To assign the access rights to the users created in Question 2, you can use SQL commands in an Oracle database. Here's an example of how you can achieve this:
1. Create the read_access role and grant Read/Only access to the oe tables ORDERS and CUSTOMERS:
```sql
-- Create the read_access role
CREATE ROLE read_access;
-- Grant Read/Only access to ORDERS and CUSTOMERS tables to the read_access role
GRANT SELECT ON oe.ORDERS TO read_access;
GRANT SELECT ON oe.CUSTOMERS TO read_access;
```
In the above commands, we create the `read_access` role using the `CREATE ROLE` statement. Then, we grant the `SELECT` privilege on the `oe.ORDERS` and `oe.CUSTOMERS` tables to the `read_access` role using the `GRANT SELECT ON` statement.
2. Grant the read_access role to the cust_user user:
```sql
-- Grant the read_access role to cust_user
GRANT read_access TO cust_user;
```
The `GRANT` statement is used to assign the `read_access` role to the `cust_user` user.
3. Grant Read/Write access to the WAREHOUSES and INVENTORIES tables to the invent_user user:
```sql
-- Grant Read/Write access to WAREHOUSES and INVENTORIES tables to invent_user
GRANT SELECT, INSERT, UPDATE, DELETE ON oe.WAREHOUSES TO invent_user;
GRANT SELECT, INSERT, UPDATE, DELETE ON oe.INVENTORIES TO invent_user;
```
In the above commands, we grant the `SELECT`, `INSERT`, `UPDATE`, and `DELETE` privileges on the `oe.WAREHOUSES` and `oe.INVENTORIES` tables to the `invent_user` user using the `GRANT` statement.
4. Allow invent_user to create new tables:
```sql
-- Allow invent_user to create new tables
GRANT CREATE TABLE TO invent_user;
```
The `GRANT CREATE TABLE` statement allows the `invent_user` user to create new tables.
After executing these SQL commands, the users will have the following access rights:
- cust_user: Read/Only access to the ORDERS and CUSTOMERS tables through the read_access role.
- invent_user: Read/Write access to the WAREHOUSES and INVENTORIES tables, as well as the ability to create new tables.
Please note that the screenshots of the successful execution of these SQL commands cannot be provided as this platform only supports text-based responses. However, you can execute these commands in an Oracle database environment to see the successful execution and verify the results.
The passwords for the created users are "password" (existing). The cust_user user should log in with their changed password from Question 2(c).