LOAD TABLE statement requires column specifications [CR 453567]

The simple LOAD TABLE example in Chapter 7, “Moving Data In and Out of Databases” is incorrect, because it contains no column specifications. The following example is correct:

LOAD TABLE department
( dept_id, dept_name, dept_head_id )
FROM '/d1/MILL1/dept.txt'