Page 93
CREATE TABLE new_table ( first_col number, second_col date third_col number default sysdate);
ORA-02266: unique/primary keys in table referenced by Âenabled foreign keys
The Instructor table has a column named Position. In the current design of this table, there is a CHECK constraint on the Position column that restricts the value to ASSISTANT PROFESSOR, ASSOCIATE PROFESSOR, and FULL PROFESSOR. Modify the database design so that an additional table, INSTRUCTOR_POSITION, is used to specify legal values for instructor position.
Page 94