The c_type.sql command file
The following command file creates the call_type table:
CREATE TABLE call_type
(
call_code CHAR(1),
code_descr CHAR(30),
PRIMARY KEY (call_code)
);