DROP TABLE ejbAccounts; CREATE TABLE ejbAccounts (id varchar(15), bal float, type varchar(15)); INSERT INTO ejbAccounts (id,bal,type) VALUES ('10000',1000,'Checking'); INSERT INTO ejbAccounts (id,bal,type) VALUES ('10005',1000,'Savings'); DROP TABLE ejbTransLog; CREATE TABLE ejbTransLog (transId varchar(32), transCommitDate date);