LOAD TABLE FORMAT syntax correction [CR 445737]

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:

LOADINTO ] TABLEowner.]table-name
... ( load-specification [, ...] )
... FROM { 'filename-string' | filename-variable } [, ...]
... [ CHECK CONSTRAINTSON | OFF } ]
... [ DEFAULTSON | OFF } ]
... QUOTES OFF
... ESCAPES OFF
... [ FORMATascii | binary } ]
...