Quantcast
Channel: Teradata Forums - Tools
Viewing all articles
Browse latest Browse all 4252

Trying to import data into my table - forum topic by tmcrouse

$
0
0

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: 

Viewing all articles
Browse latest Browse all 4252

Trending Articles