Search found 112 matches

by chetan.c
Sun Jan 27, 2013 11:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing Header and Trailer record without using UNIX
Replies: 2
Views: 3750

Search for the exact error message and you will find the solution. Although I suggest looking at file closely as it says ,it is unable to find the record delimiter to ensure the delimiter is present only after the 100000 bytes . For trailer records , the sequential will reject the record automatical...
by chetan.c
Fri Jan 25, 2013 12:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filename column for multiple file read
Replies: 7
Views: 4435

Apologies Craig.
I Should have pointed towards it.
by chetan.c
Thu Jan 24, 2013 12:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filename column for multiple file read
Replies: 7
Views: 4435

Set this environment variable APT_IMPORT_PATTERN_USES_FILESET to true and check.
by chetan.c
Fri Jan 18, 2013 11:37 pm
Forum: General
Topic: Design a job with infinite loop
Replies: 10
Views: 4420

Not an expert , but this is how we had done it. Since the OS is mentioned as UNIX. A while loop with a condition for controlling the start and stop of the loop. In the while loop , check for the existence of the trigger file ,if present run the job using the dsjob command else some wait time to rech...
by chetan.c
Fri Jan 18, 2013 2:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: duplicate record at lookup
Replies: 3
Views: 6216

Search the forum for Ignoring duplicate entry at table record If the reference set is expected to have multiple records and you are expecting multiple lookup results , then enable return multiple rows in the lookup. Else de duplicate the data using a remove duplicate stage. If you have capture the d...
by chetan.c
Fri Jan 04, 2013 2:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File
Replies: 11
Views: 6880

See if this helps.

viewtopic.php?t=146613

The filename can be read in the sequential file stage using the filename column.
by chetan.c
Thu Jan 03, 2013 11:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Unix script in Datstage Transformer
Replies: 12
Views: 9799

chulett wrote:That would be a PX answer. For a Server job, create a routine that leverages DSExecute() and call that in your transformer. ...
Sorry missed the forum. :oops:
by chetan.c
Thu Jan 03, 2013 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Unix script in Datstage Transformer
Replies: 12
Views: 9799

There is an external filter stage where you can use unix commands which operate on each row.
Not sure if you can call a script there.
by chetan.c
Mon Dec 17, 2012 5:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java Compilation error
Replies: 9
Views: 6832

This link tells you about the compilation of your code.

http://www-01.ibm.com/support/docview.w ... wg21607302

Thanks,
Chetan.C
by chetan.c
Wed Dec 12, 2012 8:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A bit difficult requirement
Replies: 6
Views: 3307

Hi,

For the ACCT=100 the max recno is 11 and name is NULL not bb.
Any chance this is not being handled, to give the not null value causing the issue?

What is the RECNO that you are getting in the output for that ACCNT?

As craig said, do show us the stage variables.

Thanks,
Chetan.C
by chetan.c
Wed Nov 14, 2012 11:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java transformer error
Replies: 8
Views: 7597

Hi,


Create a folder "SampleJavaPlugIns" in the directory of your present class file location.
Your class file should be present inside the "SampleJavaPlugIns" folder.




Thanks,
Chetan.C
by chetan.c
Wed Nov 14, 2012 10:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java transformer error
Replies: 8
Views: 7597

Hi,

In the beginning of the code,can you show us what is the package and class you are pointing to.

Like this.. http://tinyurl.com/d8sgf6n.


Thanks,
Chetan.C
by chetan.c
Wed Oct 17, 2012 12:22 pm
Forum: General
Topic: How to abort sequenceafter unix script returns value >0
Replies: 2
Views: 2532

Hi,
Another option would be to use the Terminator Activity.
Based on the condition the flow can be directed towards the terminator activity.


IBM docs.
http://tinyurl.com/czfdh82.


Thanks,
Chetan.C
by chetan.c
Wed Aug 29, 2012 11:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date format %(d,s)/%(m,s)/%yyyy in Sequential file
Replies: 2
Views: 2725

Oops!!
Thanks Shane.That was the problem.
by chetan.c
Wed Aug 29, 2012 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date format %(d,s)/%(m,s)/%yyyy in Sequential file
Replies: 2
Views: 2725

Date format %(d,s)/%(m,s)/%yyyy in Sequential file

Hi, Im trying to read a date column in sequential file stage. The date format string in the extended properties of the column is specified as: %(d,s)/%(m,s)/%yyyy I'm able to read date like 1/1/2012 but with same format I'm unable to read the date like 12/31/2012 . The output appears like this *****...