LOAD TABLE FORMAT syntax correction [CR 445737]

In the section “Bulk loading data using the LOAD TABLE statement” in Chapter 7, “Moving Data In and Out of Databases,” the syntax for the FORMAT option of the LOAD TABLE statement should not contain single quotes. The correct syntax is:

LOAD TABLEowner.]table-name
[ ( load-specification, ... ) ]
FROM 'filename-string', ...
 [ FORMATascii | binary } ]
... [ DELIMITED BY string ]
... [ STRIPON | OFF } ]
... [ QUOTESON | OFF } ]
... [ ESCAPESON | OFF } ]
... [ ESCAPE CHARACTER character ] 
... [ WITH CHECKPOINT ON|OFF ]
... [ load-options ]