Consider the following PL/SQL script:
SET SERVEROUTPUT ON
BEGIN
INSERT INTO COURSE (course_no, description, created_by, created_date, modified_by, modified_date)
VALUES (course_no_seq.nextval, 'database development', 'USER', SYSDATE);
COMMIT;
DBMS_OUTPUT.PUT_LINE('One course has been added');
END;