Search found 3329 matches

by Sainath.Srinivasan
Fri Jul 12, 2013 6:00 am
Forum: General
Topic: Importing and Exporting Datastage Jobs
Replies: 7
Views: 5886

You can create another project to re-align the jobs based on your needs.

This is not recommended as you will soon loose track of jobs when future changes come along.
by Sainath.Srinivasan
Fri Jul 12, 2013 5:56 am
Forum: General
Topic: import data from excels
Replies: 5
Views: 4081

Did you look into Pivot option ?

Will the number of columns be same in all input data ?
by Sainath.Srinivasan
Wed Nov 03, 2010 3:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameter value of the previous run
Replies: 1
Views: 3165

Copy the file (if arrived) into a common location. Thus if today's file does not arrive, you will have the previous one there.

Crude but simple method.
by Sainath.Srinivasan
Fri Oct 29, 2010 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to Load data in SAP using IDOC
Replies: 2
Views: 2746

How did you deduce the error was from idoc ?

What happens if you remove idoc with a sequential file ?
by Sainath.Srinivasan
Thu Oct 28, 2010 2:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Footer record for each group by value
Replies: 7
Views: 6305

Why not run the data through an aggregator and include 2 extra dummy columns.
1.) A newline character after the key field
2.) A '(count)' string after the record count field.

That must do the trick.
by Sainath.Srinivasan
Thu Oct 28, 2010 2:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Custom message in Buildop
Replies: 1
Views: 3030

Send the message to cout
by Sainath.Srinivasan
Thu Oct 28, 2010 2:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Cobol File and Merge the records again
Replies: 2
Views: 3322

What have you tried so far and what were your problems ?

Is the provided example the full record or only the occurs clause section ?
by Sainath.Srinivasan
Wed Oct 27, 2010 6:59 am
Forum: General
Topic: how to call unix script with project level parameters
Replies: 1
Views: 3123

Your requirement is bit unclear for me. Maybe that is because you are discussing more than one issue. How are you calling your Unix script from DataStage ? Is it a before/after routine or from sequence ? If it is from sequences, you can use convert function to change '\' to '/'. How are you using th...
by Sainath.Srinivasan
Mon Oct 25, 2010 5:19 am
Forum: General
Topic: Passing data as parameter values
Replies: 8
Views: 7593

Search for userstatus.
by Sainath.Srinivasan
Mon Oct 25, 2010 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating of Routine fr this Function nt to allow Special Chr
Replies: 1
Views: 2879

Why a routine and not a transform ?

You can make it into routine as

Code: Select all

Ans = Convert(Convert('ABCDEFGHIJKLMNOPQRSTUVWXZY0123456789','',Arg1),'',Arg1)
by Sainath.Srinivasan
Mon Oct 25, 2010 5:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Error generated while viewing the log
Replies: 2
Views: 3861

Blink stands for backward link.

Did you have loads of messages or did you run out of space ? A search for blink may help you.
by Sainath.Srinivasan
Fri Oct 22, 2010 2:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp using "Build" - how does one write a log m
Replies: 9
Views: 6695

That will and does work. It is a tried and tested method.
by Sainath.Srinivasan
Thu Oct 21, 2010 9:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp using "Build" - how does one write a log m
Replies: 9
Views: 6695

ArndW,

Are you saying that the solution works or not ?

You can try

Code: Select all

std::cerr << "this is a warning message\n";
by Sainath.Srinivasan
Thu Oct 21, 2010 6:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp using "Build" - how does one write a log m
Replies: 9
Views: 6695

You can use fprintf with stdout or stderr to achieve this.
by Sainath.Srinivasan
Thu Oct 21, 2010 6:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add an header and trailer to a file through datastage
Replies: 4
Views: 4948

There are loads of options
1.) Funnel the rows
2.) Before/after calls from job properties
3.) Sequencer calling header and trailer using execute command stage

Ultimately, all will be prepared separately and then combined together.