Based on what I'm reading, this should work, but it's failing with "missing SELECT keyword". Is it clear what I'm doing wrong? I'm trying to add records into an ORACLE table from a local CSV file with the same columns.
LOAD DATA
INFILE 'c:\Inst.csv'
APPEND INTO TABLE STG.RATE_ARCHIVE
FIELDS TERMINATED BY ","
(X_COOR,Y_COOR,Start_Dttm,End_Dttm,VAL);