CODE
drop table City
drop table VideoGameStore
drop table Employee
drop table Product
drop table ItemsSoldByEmployee
spool c:\results.txt
create table City(CID integer, City_Name char(15),
primary key(CID));
create table VideoGameStore(SID integer, Store_Name char(15),
primary key(SID));
create table Employee(EID integer, Lname char(15),
Fname char(15), SID integer,
Store_Name char(15), CID integer,
City_Name char(15), primary key(EID));
create table product(IID integer, Item_type char(15),
Manuf_Name char(15), Item_Cost float,
primary key(IID));
create table ItemsSoldByEmployee(TN integer,
Store_Name char(15), Lname char(15),
Fname char(15), Item_Type char(15),
Manuf_Name char(15), Item_Cost char(15),
primary key(TN));
insert into City values (1000, 'BatonRouge');
insert into City values (1001, 'Baker');
insert into City values (1002, 'PortAllen');
insert into City values (1003, 'NewOrleans');
insert into City values (1004, 'Shreveport');
insert into City values (1005, 'LakeCharles');
insert into City values (1006, 'Lafayette');
insert into City values (1007, 'Opeleausas');
insert into VideoGameStore (2000, 'GameStop');
insert into VideoGameStore (2001, 'GamesRUs');
insert into VideoGameStore (2002, 'VideoGamesCity');
insert into VideoGameStore (2003, 'GameBusters');
insert into VideoGameStore (2004, 'GameShowcase');
insert into VideoGameStore (2005, 'GamePalace');
insert into VideoGameStore (2006, 'VideoGameHaven');
insert into Employee (5000, 'Smith', 'John', 2000, 'GameStop', 1005, 'LakeCharles');
insert into Employee (5001, 'Taylor', 'Sallie', 2003, 'GameBusters', 1007, 'Opeleausas');
insert into Employee (5002, 'Jones', 'Ryan', 2006, 'VideoGameHaven', 1000, 'BatonRouge');
insert into Employee (5003, 'Walker', 'Sean', 2003, 'GameBusters', 1007, 'Opeleausas');
insert into Employee (5004, 'Combs', 'Sean', 2000, 'GameStop', 1000, 'BatonRouge');
insert into Employee (5005, 'Carter', 'Shawn', 2000, 'GameStop', 1000, 'BatonRouge');
insert into Employee (5006, 'Dorsey', 'Chris', 2001, 'GamesRUs', 1003, 'NewOrleans');
insert into Employee (5007, 'Carter', 'Dwayne', 2004, 'GameShowcase', 1001, 'Baker');
insert into Employee (5008, 'Tapp', 'James', 2002, 'VideoGameCity', 1003, 'NewOrleans');
insert into Employee (5009, 'Gray', 'Terius', 2002, 'VideoGameCity', 1003, 'NewOrleans');
insert into Employee (5010, 'Bishop', 'Eric', 2005, 'GamePalace', 1002, 'PortAllen');
insert into Employee (5011, 'Young', 'Andre', 2000, 'GameStop', 1005, 'LakeCharles');
insert into Employee (5012, 'Simmons', 'Earl', 2005, 'GamePalace', 1002, 'PortAllen');
insert into Employee (5013, 'Miller', 'Corey', 2006, 'VideGameHaven', 1000, 'BatonRouge');
insert into Employee (5014, 'Crump', 'Levell', 2001, 'GamesRUs', 1003, 'NewOrleans');
insert into Employee (5015, 'Stevens', 'Earl', 2004, 'GameShowcase', 1001, 'Baker');
insert into Employee (5016, 'Weston', 'Wesley', 2003, 'GameBusters', 1004, 'shreveport');
insert into Employee (5017, 'Miller', 'Percy', 2003, 'GameBusters', 1004, 'Shreveport');
insert into Employee (5018, 'Tyler', 'Michael', 2000, 'GameStop', 1006, 'Lafayette');
insert into Employee (5019, 'Shakur', 'Tupac', 2000, 'GameStop', 1006, 'Lafayette');
spool off
This is what Im getting when I run the database code
CODE
7 drop table City
8 drop table VideoGameStore
9 drop table Employee
10 drop table Product
11 drop table ItemsSoldByEmployee
12 spool c:\results.txt
13
SQL>
SQL> create table City(CID integer, City_Name char(15),
2 primary key(CID));
create table City(CID integer, City_Name char(15),
*
ERROR at line 1:
ORA-00955: name is already used by an existing object
SQL>
SQL> create table VideoGameStore(SID integer, Store_Name char(15),
2 primary key(SID));
create table VideoGameStore(SID integer, Store_Name char(15),
*
ERROR at line 1:
ORA-00955: name is already used by an existing object
SQL>
SQL> create table Employee(EID integer, Lname char(15),
2 Fname char(15), SID integer,
3 Store_Name char(15), CID integer,
4 City_Name char(15), primary key(EID));
create table Employee(EID integer, Lname char(15),
*
ERROR at line 1:
ORA-00955: name is already used by an existing object
SQL>
SQL> create table product(IID integer, Item_type char(15),
2 Manuf_Name char(15), Item_Cost float,
3 primary key(IID));
create table product(IID integer, Item_type char(15),
*
ERROR at line 1:
ORA-00955: name is already used by an existing object
SQL>
SQL> create table ItemsSoldByEmployee(TN integer,
2 Store_Name char(15), Lname char(15),
3 Fname char(15), Item_Type char(15),
4 Manuf_Name char(15), Item_Cost char(15),
5 primary key(TN));
create table ItemsSoldByEmployee(TN integer,
*
ERROR at line 1:
ORA-00955: name is already used by an existing object
SQL>
SQL>
SQL> insert into City values (1000, 'BatonRouge');
insert into City values (1000, 'BatonRouge')
*
ERROR at line 1:
ORA-00001: unique constraint (SCOTT.SYS_C005028) violated
SQL> insert into City values (1001, 'Baker');
insert into City values (1001, 'Baker')
*
ERROR at line 1:
ORA-00001: unique constraint (SCOTT.SYS_C005028) violated
SQL> insert into City values (1002, 'PortAllen');
insert into City values (1002, 'PortAllen')
*
ERROR at line 1:
ORA-00001: unique constraint (SCOTT.SYS_C005028) violated
SQL> insert into City values (1003, 'NewOrleans');
insert into City values (1003, 'NewOrleans')
*
ERROR at line 1:
ORA-00001: unique constraint (SCOTT.SYS_C005028) violated
SQL> insert into City values (1004, 'Shreveport');
insert into City values (1004, 'Shreveport')
*
ERROR at line 1:
ORA-00001: unique constraint (SCOTT.SYS_C005028) violated
SQL> insert into City values (1005, 'LakeCharles');
insert into City values (1005, 'LakeCharles')
*
ERROR at line 1:
ORA-00001: unique constraint (SCOTT.SYS_C005028) violated
SQL> insert into City values (1006, 'Lafayette');
insert into City values (1006, 'Lafayette')
*
ERROR at line 1:
ORA-00001: unique constraint (SCOTT.SYS_C005028) violated
SQL> insert into City values (1007, 'Opeleausas');
insert into City values (1007, 'Opeleausas')
*
ERROR at line 1:
ORA-00001: unique constraint (SCOTT.SYS_C005028) violated
SQL>
SQL>
SQL> insert into VideoGameStore (2000, 'GameStop');
insert into VideoGameStore (2000, 'GameStop')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into VideoGameStore (2001, 'GamesRUs');
insert into VideoGameStore (2001, 'GamesRUs')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into VideoGameStore (2002, 'VideoGamesCity');
insert into VideoGameStore (2002, 'VideoGamesCity')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into VideoGameStore (2003, 'GameBusters');
insert into VideoGameStore (2003, 'GameBusters')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into VideoGameStore (2004, 'GameShowcase');
insert into VideoGameStore (2004, 'GameShowcase')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into VideoGameStore (2005, 'GamePalace');
insert into VideoGameStore (2005, 'GamePalace')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into VideoGameStore (2006, 'VideoGameHaven');
insert into VideoGameStore (2006, 'VideoGameHaven')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL>
SQL>
SQL> insert into Employee (5000, 'Smith', 'John', 2000, 'GameStop', 1005, 'LakeCharles');
insert into Employee (5000, 'Smith', 'John', 2000, 'GameStop', 1005, 'LakeCharles')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5001, 'Taylor', 'Sallie', 2003, 'GameBusters', 1007, 'Opeleausas');
insert into Employee (5001, 'Taylor', 'Sallie', 2003, 'GameBusters', 1007, 'Opeleausas')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5002, 'Jones', 'Ryan', 2006, 'VideoGameHaven', 1000, 'BatonRouge');
insert into Employee (5002, 'Jones', 'Ryan', 2006, 'VideoGameHaven', 1000, 'BatonRouge')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5003, 'Walker', 'Sean', 2003, 'GameBusters', 1007, 'Opeleausas');
insert into Employee (5003, 'Walker', 'Sean', 2003, 'GameBusters', 1007, 'Opeleausas')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5004, 'Combs', 'Sean', 2000, 'GameStop', 1000, 'BatonRouge');
insert into Employee (5004, 'Combs', 'Sean', 2000, 'GameStop', 1000, 'BatonRouge')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5005, 'Carter', 'Shawn', 2000, 'GameStop', 1000, 'BatonRouge');
insert into Employee (5005, 'Carter', 'Shawn', 2000, 'GameStop', 1000, 'BatonRouge')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5006, 'Dorsey', 'Chris', 2001, 'GamesRUs', 1003, 'NewOrleans');
insert into Employee (5006, 'Dorsey', 'Chris', 2001, 'GamesRUs', 1003, 'NewOrleans')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5007, 'Carter', 'Dwayne', 2004, 'GameShowcase', 1001, 'Baker');
insert into Employee (5007, 'Carter', 'Dwayne', 2004, 'GameShowcase', 1001, 'Baker')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5008, 'Tapp', 'James', 2002, 'VideoGameCity', 1003, 'NewOrleans');
insert into Employee (5008, 'Tapp', 'James', 2002, 'VideoGameCity', 1003, 'NewOrleans')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5009, 'Gray', 'Terius', 2002, 'VideoGameCity', 1003, 'NewOrleans');
insert into Employee (5009, 'Gray', 'Terius', 2002, 'VideoGameCity', 1003, 'NewOrleans')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5010, 'Bishop', 'Eric', 2005, 'GamePalace', 1002, 'PortAllen');
insert into Employee (5010, 'Bishop', 'Eric', 2005, 'GamePalace', 1002, 'PortAllen')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5011, 'Young', 'Andre', 2000, 'GameStop', 1005, 'LakeCharles');
insert into Employee (5011, 'Young', 'Andre', 2000, 'GameStop', 1005, 'LakeCharles')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5012, 'Simmons', 'Earl', 2005, 'GamePalace, 1002, 'PortAllen');
ERROR:
ORA-01756: quoted string not properly terminated
SQL> insert into Employee (5013, 'Miller', 'Corey', 2006, 'VideGameHaven', 1000, 'BatonRouge');
insert into Employee (5013, 'Miller', 'Corey', 2006, 'VideGameHaven', 1000, 'BatonRouge')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5014, 'Crump', 'Levell', 2001, 'GamesRUs', 1003, 'NewOrleans');
insert into Employee (5014, 'Crump', 'Levell', 2001, 'GamesRUs', 1003, 'NewOrleans')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5015, 'Stevens', 'Earl', 2004, 'GameShowcase', 1001, 'Baker');
insert into Employee (5015, 'Stevens', 'Earl', 2004, 'GameShowcase', 1001, 'Baker')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5016, 'Weston', 'Wesley', 2003, 'GameBusters', 1004, 'shreveport');
insert into Employee (5016, 'Weston', 'Wesley', 2003, 'GameBusters', 1004, 'shreveport')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5017, 'Miller', 'Percy', 2003, 'GameBusters', 1004, 'Shreveport');
insert into Employee (5017, 'Miller', 'Percy', 2003, 'GameBusters', 1004, 'Shreveport')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5018, 'Tyler', 'Michael', 2000, 'GameStop', 1006, 'Lafayette');
insert into Employee (5018, 'Tyler', 'Michael', 2000, 'GameStop', 1006, 'Lafayette')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL> insert into Employee (5019, 'Shakur', 'Tupac', 2000, 'GameStop', 1006, 'Lafayette');
insert into Employee (5019, 'Shakur', 'Tupac', 2000, 'GameStop', 1006, 'Lafayette')
*
ERROR at line 1:
ORA-00928: missing SELECT keyword
SQL>
SQL>
SQL>
SQL>
SQL> spool off
not spooling currently