The following example converts CSV to Avro, where each CSV record is converted to one output row composed of one Avro record, along with its schema.
csv10.txt Item_ID,Item_Name,Item_Color,Item_Style,Quantity_Purchased,Item_Price,Total_Price#55,bicycle,red,boys,1,100.00,100.00#88,toy boat,pink,,1,15.10,15.10#105,soap,,,1,0.99,0.99|2
CREATE TABLE myCSVTable09( id INTEGER, csvFile CLOB); .import vartext file csv10.txt USING (c1 VARCHAR(1000), c2 VARCHAR(10)) INSERT INTO myCSVTable09(cast(:c2 AS INTEGER),:c1);