1 - IBM

The following tables and stored procedure need to be created in the DB2 database to run the scenario. a. Script for creating the Customer and Address tables. CREATE TABLE CUSTOMER ("PKEY" VARCHAR(10) NOT NULL PRIMARY KEY, "FNAME" VARCHAR(20) , "LNAME" VARCHAR(20) , "CCODE" VARCHAR(10) ) ; CREATE TABLE ADDRESS ................
................