8.1 Write SQL*Plus commands to do the following:
Make sure that the Autocommit is off;
List the names of all tables in this schema;
8.2 Assume that the following table is created and stored in your database:
Staff (staffNo, name, post, salary, sex, DOB)
Write SQL statements to do the following:
(a) Increment the salary of managers by 5%;
(b) Remove the records of all ‘salesmen’ from the Staff table;
(c) List the Staff table tablespace name, pctfree, and pctused.