Hi,
 
I have a file like this:
 
Agent.data
32,Agente de prueba de carga,1,1155
 
A table Agent like this:
 
CREATE TABLE Agent (
  sAgent VARCHAR(5) NOT NULL,
  sDescript VARCHAR(40) NOT NULL,
  sChangeType VARCHAR(5) NULL,
  nUser_id INTEGER NOT NULL,
  dCompdate DATE NOT NULL,
  PRIMARY KEY(sAgent)

And I am trying to load data by using this command:
 
loadercli>dataload table dba.agent sAgent 1 sDescript 2 sChangeType 3 nIser_id 4 
dCompdate DATE infile 'c:\agent.data'
ERR -25243
Error parsing timestamp mask: Date mask incomplete
 
Anybody have an idea?
 
Thanks in advance!!
Jonathan
 

Reply via email to