Search found 53125 matches

by ray.wurlod
Fri Nov 03, 2006 9:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Group By in DB2 Stage and Ref from hash File
Replies: 4
Views: 1313

In Server jobs use an Aggregator stage for grouping and aggregate functions.

Sort the input data for best performance.
by ray.wurlod
Fri Nov 03, 2006 9:51 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Just Learning - COBOL example of real issue
Replies: 3
Views: 2390

Welcome aboard. :D

Are you using DataStage TX, or DataStage server or parallel jobs?

I am unfamiliar with TX but in the other scenarios you can import the table definition from the COBOL FD and use a Complex Flat File stage to process it.
by ray.wurlod
Fri Nov 03, 2006 9:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration File Error : Permission Denied
Replies: 4
Views: 3635

Silly as it may sound, check also that your process has read permission to /dsadm/Ascential/DataStage/Configurations/GlxDB2ETL_Large.apt
(the parallel configuration file).
by ray.wurlod
Fri Nov 03, 2006 9:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject Handling in Parallel Job
Replies: 1
Views: 813

shivakumar wrote:I can not use the temporary datasets and the Temporary tables in between the Stages.
In a single job this is the case.
shivakumar wrote:I want to achieve this in a single job.
For what reason? If two jobs is the right answer, then two jobs is the right answer.
by ray.wurlod
Fri Nov 03, 2006 9:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchdbutil command
Replies: 1
Views: 1837

Welcome aboard. :D Try using the DataStage Repository Manager client to import the table definition through the GUI for Orchestrate, choosing the third of the three options (database). This will allow you to specify the property values in the wizard, and give you access to on-line help. It will beco...
by ray.wurlod
Fri Nov 03, 2006 9:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing Rejected Rows in DB2/UDB API stage
Replies: 6
Views: 1836

One job in a sequence (processing 0 rows) to create the table, a second job to populate it? That would allow you to use the DB2 Enterprise stage to take full advantage of parallelism.
by ray.wurlod
Fri Nov 03, 2006 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sending SMS form datastage
Replies: 2
Views: 1237

To expand the point ever so briefly, most email servers allow you to configure a mobile phone gateway such that an address of the form kumar_s indicated will be redirected to a pager or a mobile/cell/hand phone. As far as DataStage is concerned, it's just an email address. The clever part is done wi...
by ray.wurlod
Fri Nov 03, 2006 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading file from Mainframes
Replies: 1
Views: 582

It's almost certain that internal politics will mean that the mainframe folks won't want you doing this, and insist that they push the files to your server or to some place where you can pick them up without touching their precious mainframe. DataStage server jobs can not read mainframe files direct...
by ray.wurlod
Fri Nov 03, 2006 9:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to generate a unique Multiple Instance indentifier
Replies: 8
Views: 2328

You can do that with my approach too. Just re-use the invocation IDs. Keep a list of them in memory (that is, in a variable or an array), grab the first unused slot.
by ray.wurlod
Fri Nov 03, 2006 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Speed limit while reading a sequential file.
Replies: 5
Views: 2315

Or don't write it at all. Set the Transformer stage output link constraint to @FALSE, so the job is purely reading. I would expect (given that your row size is not over-large) thousands of rows per second. There are quite a few speed-ups in the functions used to access sequential files. The throughp...
by ray.wurlod
Fri Nov 03, 2006 9:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UVTEMP file 2 Gig limit?
Replies: 6
Views: 4149

You might also like to set the 64BIT_FILES configuration parameter to true (or get the support engineers to test this theory on your behalf, so as not to interrupt other things on your system) so that the intermediate table created by DataStage/SQL is also created with 64-bit pointers. Problem is th...
by ray.wurlod
Fri Nov 03, 2006 9:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Job - Help
Replies: 6
Views: 2794

If you don't have DataStage installed on your system then there is no convenient way for you to receive any DataStage jobs, simple or otherwise.
by ray.wurlod
Fri Nov 03, 2006 9:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conversion of calender date to julian date
Replies: 2
Views: 657

There are many versions of what "Julian" means. If you mean the ordinal number of the day in the year, then the "DJ" conversion code in Oconv() will yield it. For example Oconv(InternalDate, "D4/JY") will return something like 287/2006. If you mean something else then please specify it. Perhaps look...
by ray.wurlod
Fri Nov 03, 2006 9:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CREATING MULTIPLE FILES
Replies: 2
Views: 938

You can invoke UtilityRunJob from the Transformer stage. This routine is in the SDK branch. Inspect its code, it's reasonably well documented. Just don't expect fantastic performance.
by ray.wurlod
Fri Nov 03, 2006 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seqeunce Trigger Expression
Replies: 7
Views: 2451

In 7.0 you have to type in the name of the activity, a "." character then the name of the activity variable, for example $JobStatus or $UserStatus. There is no point-and-click available in version 7.0 alas.