[Lab Session 2]   [Exercise 2]   [Course Information]   [COMP2400/6240 Home]
Coloured Line

Exercise 2

Solution Notes

Coloured Line

Output from running Carol's submission before she processed any student submissions

Output from running Carol's submission after she processed all the student submissions

Carol's submission would receive 3/3.

Students who called their table a different name from the TVS table which they copied, will receive, at most, 2/3.

See: a1: Creating Test Data

If I had wanted you to call your table a different name from the TVS table, the supplied code would have been:

-- <your initials>|<your name> <date>
-- COMP2400/6240 2006/2

-- Copy one TVS table

create table <new_tablename> as
select * from tvs.<old_tablename>;

-- Add one row of data

<your insert command>

not, as it was:

-- <your initials>|<your name> <date>
-- COMP2400/6240 2006/2

-- Copy one TVS table

create table <tablename> as
select * from tvs.<tablename>;

-- Add one row of data

<your insert command>

Coloured Line

Students who ignored the instruction

Do not put any other commands in your  ci.sql  file.

will receive, at most, 2/3.

Coloured Line

Some students are still confused by the BNF notation.


Do not type in the < >, [ ], or | because these are symbols which belong to the syntax meta-language.

For example
If you see  <your initials>|<your initials>,
do not type in, say,  <cae>  AND  <Carol Edmondson>
type in, say,  cae  OR  Carol Edmondson 

Students who did not update the <description> in the comment will receive, at most, 2/3.


[Top]

Coloured Line

Carol Edmondson   <carol@cs.anu.edu.au>
URL: http://computer/student/comp2400.2006/assessment/ca/exercises/ex2/SolnNotes.shtml
Last modified: Wednesday, 30-Aug-2006 10:16:56 EST