Hi Armin,

Armin Haaf wrote:
> 
> 
> Load and data file are attached, here is what replication 
> manager says:
> 
[snipped successfully processed commands]
> 
> DATALOAD TABLE "PPO"."ANSICHTEN"
> "BEZEICHNUNG"        1-80 CHAR         DEFAULT NULL
> "FAVORIT"            84-101 CHAR         DEFAULT NULL
> "USERID"             105-184 CHAR         DEFAULT NULL
> INFILE   '/tmp/ppo/ANSICHTEN.data                             
>             '
> DEC '/ /./'
> DATE 'INTERNAL'
> TIME 'INTERNAL'
> TIMESTAMP 'INTERNAL'
> NULL '?                   '
> BOOLEAN 'TRUE      /FALSE     '
> Error during execution
> -->-25233
> Some column descriptions with end position but file format is 
> COMPRESSED.
> 
that's easy. You need to add the keyword FORMATTED to your infile
spec as this:
 DATALOAD ...
 ...
 INFILE   '/tmp/ppo/ANSICHTEN.data' FORMATTED
 DEC '/ /./'
 DATE 'INTERNAL'
 TIME 'INTERNAL'
 TIMESTAMP 'INTERNAL'
 NULL '?                   '
 BOOLEAN 'TRUE      /FALSE     '

Reason: the default format the RepMan uses for infiles is COMPRESSED.
But this allows only relative positions (ADABAS is at this point kind
of less restrict).

Regards,
 Steffen
-- 
Steffen Schildberg
SAP DB Team
SAP Labs Berlin
_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to