Search found 55 matches

by ashwin2912
Wed Dec 14, 2005 12:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX Configuration
Replies: 6
Views: 3369

trammohan,

Will that make any difference? I dont think so... :?
by ashwin2912
Wed Nov 23, 2005 8:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Attach datetime to file after succesful completion of job
Replies: 6
Views: 3029

You can use in UNIX:

Code: Select all

date +%Y-%m-%d-%H:%M:%S
But I guess you would need to call a script to concatenate it with the file you are mving.
by ashwin2912
Wed Nov 23, 2005 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding max of date
Replies: 5
Views: 2507

You can use > or < if they are of "Date" datatypes.
by ashwin2912
Tue Oct 18, 2005 11:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running DS Jobs from DOS Batchfile
Replies: 6
Views: 3689

Where exactly is this? Can you share the download link...
by ashwin2912
Wed Oct 12, 2005 11:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running DS Jobs from DOS Batchfile
Replies: 6
Views: 3689

Hi Ray,

Can Parallel jobs (DS 7.51a/7.5 -- not 7.5x2) be run on Windows using some MKS toolkit or cygwin or one of the other UNIX-on-Windows tools?
If yes, what is the best tool and how do I configure DS to work with that tool?
by ashwin2912
Mon Oct 10, 2005 11:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running DS Jobs from DOS Batchfile
Replies: 6
Views: 3689

If you are having DS Server on Windows you should have no problem running batch file using dsjob command.
by ashwin2912
Mon Oct 10, 2005 11:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset error: Parallel job reports failure (code 141)
Replies: 6
Views: 4014

The problem disappeared mysteriously....But we realised the other day there was a change in the default configuration file used by multiple projects. Most probably this was the culprit.
by ashwin2912
Wed Oct 05, 2005 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset error: Parallel job reports failure (code 141)
Replies: 6
Views: 4014

I have deleted 7-8 stages and backtracked to the first stage and still the issue persisted. The job aborts immediately without processing any rows. Then I wrote the dataset in sequential mode, and the job ran successfully!! All other jobs in the same project are running fine with regard to this issu...
by ashwin2912
Wed Oct 05, 2005 6:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset error: Parallel job reports failure (code 141)
Replies: 6
Views: 4014

Dataset error: Parallel job reports failure (code 141)

I am writing into a dataset and the job is aborting giving following error: Info: Contents of phantom output file => 28191 Broken Pipe Info: Contents of phantom output file => DataStage Job 2490 Phantom 28192 Fatal: Parallel job reports failure (code 141) When I replace it with a sequential file it ...
by ashwin2912
Wed Sep 28, 2005 12:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extract date part from file name
Replies: 5
Views: 5025

Use this in a transformer:
Input [8,8]

Or in Modify stage:
substring(8,8)


Now, How will you get the filename into a transformer/modify?
That would depend how are you reading this file...if you are using job parameters you can use it with ease.
by ashwin2912
Mon Sep 26, 2005 2:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is this a CFF bug?
Replies: 8
Views: 5002

Is this a CFF bug?

I am using CFF stage on Datastage 7.5 When I import a copy book with a PIC S9(n) field, it is imported as a "DISPLAY NUMERIC" => PIC S9(n) type field. But when I press OK on this stage to save the changes and open the properties the next time, the same field shows as "DECIMAL" =>...
by ashwin2912
Wed Sep 21, 2005 11:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Suppression Of left zeroes
Replies: 10
Views: 7067

BWT, FMT is a server function..you would need a basic transformer to use that. In a normal (parallel) transformer: Just put the string into a Bigint field by using foll. transformation: StringToDecimal("0000525600254000") output will be: 525600254000 All your leading zeroes will be removed...
by ashwin2912
Wed Sep 14, 2005 10:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ASCII-EBCIDIC DATASTAGE JOB
Replies: 1
Views: 1409

There is no need to explicitly do this. You can use a Sequential file stage/ Complex flat file stage for your output file to do this.
You can set in Output>Format>
Character Set=EBCDIC

In fact if you load a COBOL copy book in Output>Format> tab the options will be set automatically.
by ashwin2912
Wed Aug 24, 2005 11:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header Trailer record creation for empty source
Replies: 6
Views: 4464

Good idea Rich... Just to simplify... 1. Add a dummy row (you can use a row gen & funnel stage) with a column COUNT=0 2. The detail recs should have an extra column COUNT=1 3. In an aggregator SUM(COUNT) and get the count to be put in your trailer. Hi DSLearner, 1. Create a dummy row with column...