Company Database.

Assignment

You need to implement a database that stores information about departments, employees, and projects. You need to store the following pieces of information.

Create normalized Oracle tables to keep data corresponding to the structure above and don't forget to put additional restrictions:

Each table you create must be commented in the Oracle dictionary (use the COMMENT ON statement).

Submitting the project

To submit the project you need:
  1. create sub-directory named ist466 in your home directory (use the mkdir dirname command to do that and cd dirname to go to the new directory)
  2. create a file named project1.sql located in the new directory. This file should contain all SQL commands you need to execute to complete the assignment Hint: to execute the command file from SQL*Plus use the @ command. For example, to execute file test.sql run
    SQL> @test
  3. The commands in the file also has to be commented. Comments in .sql file should start with the keyword REM (comments end at the end of the line).

Good luck!