Newbie here. Trying to setup the hr sample schema on ORACLE12C - CENTOS box but get two error codes.
$ sqlplus connect as sysdba
SQL*PLUS Release 12.1.0.2.0 Production on Tue Jan 31 04:50:15 2017 Enter Password:
Connected to: Oracle Database 12c Enterprise Edition 12.1.0.2.0 - 64bit Production With the Partitioning, OLAP, Advanced Analytics and Real Application Testing Options.
SQL> @?/demo/schema/human_resources/hr_code.sql
Procedure created.
BEFORE INSERT OR UPDATE OR DELETE ON employees *
ERROR at line 2: ORA-00942: table or view does not exist
ALTER TRIGGER secure_employees DISABLE *
ERROR at line 1: ORA-04080: trigger 'SECURE_EMPLOYEES' does not exist.
WARNING: Procedure created with compilation errors.
Warning: Procedure created with compilation errors.
AFTER UPDATE OF job_id, department_id ON employees *
ERROR at line 2: ORA-00942: table or view does not exist
Commit complete.
Please help. Don't really know what to do from here, Much thanks.