In the section “LOAD TABLE statement” in Chapter 6, “SQL Statements,” the syntax for the FORMAT option should not contain single quotes. The correct syntax is:
LOAD [ INTO ] TABLE [ owner.]table-name ... ( load-specification [, ...] ) ... FROM { 'filename-string' | filename-variable } [, ...] ... [ CHECK CONSTRAINTS { ON | OFF } ] ... [ DEFAULTS { ON | OFF } ] ... QUOTES OFF ... ESCAPES OFF ... [ FORMAT { ascii | binary } ] ...