hi
i had a txt file like D:\db.txt with data
12~the
13~hello
and i created a table
create table abc
(
a varchar(20),
b varchar(12),
c int default 0
)
bulk insert abc
from 'D:\db.txt'
with
(
fieldterminator='~',
rowterminator=''
)
With out column c the txt file is uploading nice but when i use column c it showing error...
Any idea?