I have a csv file and I am trying to import the data into my table and it says invalid query. I am very new to Teradata.
Here is my code:
[code]
.import data file=c:\users\ad36742\documents\communication.csv,skip=3
.quiet on
.repeat *
using comm_id(integer),
comm_type varchar(50)
insert into dl_qpt_cqe.communcation
(comm_id,
comm_type
)
values
(
:comm_id
,:comm_type
);
.quit;
[/code]
Forums: