Released on Feb 8, 2013. Hardcopy due at the start of class on Feb 22, 2013.
In this assignment you have to design a schema for the DBLP dataset. You should design your schema in PostgreSQL and populate the database. You can utilise your PostgreSQL account on cs4604.cs.vt.edu for all aspects of this assignment. If you do not have an account for yourself or for your group, or if you have any problem with the set-up please contact Qianzhou [qiand12 AT cs DOT vt DOT edu].CREATE TABLE Students ( pid CHAR(6) PRIMARY KEY, ssn CHAR(9) UNIQUE, name CHAR(30), birthdate DATE, gender CHAR(1) NOT NULL, address VARCHAR(255) );Do not start loading these definitions into the database just yet!