The assignment content includes four procedures in Oracle PL/SQL. The first procedure, `add_new_account`, adds a new account to the database if the input is valid. If not, it raises an exception and displays an error message. The second procedure, `state_balance`, displays the sum of balances for a given state. The third procedure, `address_update`, updates a customer's address if the customer ID exists in the database. If the customer ID does not exist, it raises an exception and displays an error message. The fourth procedure, `transac_history`, displays all transactions with amounts greater than or equal to a specified amount. Finally, the extra credit task involves creating a trigger that logs changes to a customer's address.