Search found 6 matches

by romil_ds
Thu Dec 13, 2012 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A bit difficult requirement
Replies: 6
Views: 3327

Hi Chandra, Please try this. ACCT -> svNewAcc TYPE -> svNewType RECNO -> svNewRec If svNewAcc = svOldAcc and svNewType = 36 Then 1 else 0 -> sv1 If svNewAcc = svOldAcc and svNewType = 36 Then svoldRec else 0 -> sv2 svNewAcc -> svOldAcc svNewType -> svOldType svNewRec -> svoldRec Put a constraint sv1...
by romil_ds
Tue Sep 04, 2012 5:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal error sequential file
Replies: 5
Views: 2914

Re: Fatal error sequential file

Fixed width file doesn't have a record delimiter. Instead set "Final delimiter = none" at the Record level property.
by romil_ds
Fri Jan 14, 2011 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rejecting Null values during file import
Replies: 3
Views: 6163

Hi Ray, Actually I am using the schema file to read the sequential file and hence there is no column defined in the job. The record contents I have sent are of schema file. So I have the only option to reject the record during import. but It is not working for string type column. I also tried puttin...
by romil_ds
Fri Jan 14, 2011 11:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rejecting Null values during file import
Replies: 3
Views: 6163

Rejecting Null values during file import

Hi all, my job is reading the data from sequential file and then loading it into a database. I need to reject the record if the incoming column is null at the source sequential file stage itself. The stage is rejecting the records if null is found in Integer type column but not for string type colum...
by romil_ds
Fri Aug 20, 2010 10:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read all records from cobol file using CFF stage
Replies: 2
Views: 2066

Hi Frankline, Thanks for your quick reply. I have already done exatclty in the same way and it was a successful attempt. I was able to separate similar format records into single cff file and then read that file again using cff stage file proper record definition with no record_id since the file con...
by romil_ds
Fri Aug 20, 2010 9:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read all records from cobol file using CFF stage
Replies: 2
Views: 2066

Unable to read all records from cobol file using CFF stage

Hi All, I have a cobol file containing 6 different format of records. Using copy codes for each type of records I am able to read the first 5 records through CFF stage but not the 6th and subsequent records. The column definition for that record is also correctly defined. Also I have defined one of ...