I am importing data in PostgreSQL database from .LOD files(which contains data in csv format). For importing I am following these steps:
1) Right Click On table name
2) click on import
3) select file from which data has to be imported
4) done
But while doing this I am getting an error message for a table with data like:
APP_PGM_APPLY,APP_PGM_CS_NUM,APP_PGM_REQ_DT,APP_PGM_STS,APP_PGM_STS_DT,CR_TS_HI,CR_TS_LO,EFF_BEG_DT,EFF_END_DT,VOID_SW,APP_PGM_NUM
"RE","TD877E3","20150105","DN","20150105"," 362952774"," 304895920","20150105", , ,"2H01889"
"RE","B1ZBA17","20150130","PE","20150130"," 363222251"," 178702340","20150130","20150204", ,"2I15600"
The error message is:

both date fields are allowed to accept null values. But still it is throwing this error. Table defination:
CREATE TABLE app_pgm_choice
(
app_pgm_apply character(2),
app_pgm_cs_num character(7),
app_pgm_req_dt date,
app_pgm_sts character(2),
app_pgm_sts_dt date,
cr_ts_hi integer NOT NULL,
cr_ts_lo integer NOT NULL,
eff_beg_dt date,
eff_end_dt date,
void_sw character(1),
app_pgm_num character(7) NOT NULL,
CONSTRAINT app_pgm_choice_pk1 PRIMARY KEY (app_pgm_num, cr_ts_hi, cr_ts_lo)
)
Please help me to solve this issue.
304895920","20150105", , ,"2H01889"