The following are examples of how to use the decimal delimiter option. The option use is shown in bold text.
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(delim 'delim' decimalDelim ',');
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(decimalDelim ',' format 'fixed' layout (c1 int bytes 4, c2 float bytes
6, c3 numeric(10,2) bytes 11, c4 time 24HOUR ':' bytes 11 );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 float bytes 6, c3
numeric(10,2) decimal ',' bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 float bytes 6, c3
numeric(10,2) decimal decimalDelim ',' bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 float floating ','
bytes 6, c3 numeric(10,2) bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 float floating
decimalDelim ',' bytes 6, c3 numeric(10,2) bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 double exponential ','
bytes 6, c3 numeric(10,2) bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 float exponential
decimalDelim ',' bytes 6, c3 numeric(10,2) bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 time 12HOUR
decimalDelim ',' bytes 12, c3 numeric(10,2) bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 time timeDelim '-'
decimalDelim ',' bytes 12, c3 numeric(10,2) bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 time timeDelim '-' ','
bytes 12, c3 numeric(10,2) bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 time 12HOUR '-'
decimalDelim ',' bytes 12, c3 numeric(10,2) bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 time 12HOUR '-' ','
bytes 12, c3 numeric(10,2) bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 time 12HOUR timeDelim
'-' decimalDelim ',' bytes 12, c3 numeric(10,2) bytes 11) );
INSERT INTO <target-table> SELECT * FROM '<external-table>' USING
(format 'fixed' layout (c1 int bytes 4 , c2 time 12HOUR timeDelim
'-' ',' bytes 12, c3 numeric(10,2) bytes 11) )