Archives of the TeradataForum
Message Posted: Thu, 10 Feb 2005 @ 19:46:29 GMT
Subj: | | Help with bteq script to load a table |
|
From: | | hklein |
HI all.
I have a very small data file that I am trying to load into a table. I am using BTEQ instead of mload /fload cause it's a very small file with
less than 100 records. I have done this before using mloadand & fload but never with bteq. already spent 2 full days trying to figure what's wrong
but no results yet. any help will be really apprecited as i am already.
my logon is successful.
.import file ud_prod.txt;
format vartext ','
insert into harry.lookup
(id,
name
)
values
( :id,
:name
);
this are the warnings that i get:
no import mode was given, assuming field mode.
expected a '.' before the command
expected ON or OFF not 'VARTEXT', assuming the ON value.
extra text found after command.
insert into harry. not processes
|