Search found 53125 matches

by ray.wurlod
Fri Mar 02, 2007 5:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: export jobs from unix
Replies: 8
Views: 2642

kumar_s wrote:Version 8 is available in market already for widows as of now.
So you can expect the same functionality in Unix soon.


Widows?!!

Ladies, don't rush out and kill your husbands just to get your hands on a copy of version 8.0.

For the UNIX versions, it's more likely to be months than weeks.
by ray.wurlod
Fri Mar 02, 2007 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting data from a File in the Mainframe system
Replies: 8
Views: 2506

No matter what you do you're going to need to move the file from the mainframe to your DataStage server. Why not have the mainframe push the file across and then read it with a Complex Flat File stage, which is intended for use with COBOL file definitions, handling level numbers according to your re...
by ray.wurlod
Fri Mar 02, 2007 5:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: string splitting
Replies: 15
Views: 3980

On a point of efficiency, you've calculated Field(Input.Field, " ", 2) twice. It would therefore be better to calculate this in a stage variable. Once.
by ray.wurlod
Fri Mar 02, 2007 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Engine brought up but don't brought up
Replies: 9
Views: 4794

Is dsrpcd actually running? Use ps -ef | grep dsrpcd | grep -v grep to find out. Ah, yes, you did; I see it at the end of your post. This daemon should be automatically started, as part of starting DataStage; you ought not to have to start it manually. If you do, I believe it's better to be root to ...
by ray.wurlod
Fri Mar 02, 2007 4:49 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: No response from server testing connection
Replies: 7
Views: 4666

:oops: I should have thought of that. One of the very first things you do in ProfileStage diagnosis is to check the logs, particularly for message switch activity.

Please mark the thread as resolved.
by ray.wurlod
Thu Mar 01, 2007 8:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning log capture
Replies: 14
Views: 3629

Coding from memory! Have edited code.

Select fDSJobs To 9

DSJS.RUNFAILED
by ray.wurlod
Thu Mar 01, 2007 8:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deployment Automation
Replies: 11
Views: 4896

Sure you do. razor.
by ray.wurlod
Thu Mar 01, 2007 8:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Documentation explaining APT_DUMP_SCORE output
Replies: 3
Views: 1358

The best document is the class notes from the Advanced DataStage class from IBM (DX436) or the Advanced Parallel Job Techniques class from me.
by ray.wurlod
Thu Mar 01, 2007 8:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routines
Replies: 12
Views: 3108

Right mouse click on the Routine activity. You should be able to open the Routine by that means.
by ray.wurlod
Thu Mar 01, 2007 7:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deployment Automation
Replies: 11
Views: 4896

For advanced runtime options open any parallel job, open its job properties and find the Execution tab. Then click Help.
by ray.wurlod
Thu Mar 01, 2007 7:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage
Replies: 8
Views: 2122

The Modify stage has a function called handle_null() for replacing an out of band null (the NULL you're talking about) with a specific value (an in-band null). It also has a function called make_null() for generating an out of band null. So perhaps you could try: NewCol=handle_null(make_null(...
by ray.wurlod
Thu Mar 01, 2007 7:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsenv & orchadmin
Replies: 9
Views: 7010

Does PATH contain $PXHOME/bin ?
by ray.wurlod
Thu Mar 01, 2007 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replacement for Oracle OCI
Replies: 6
Views: 1300

Not only that, it's also necessary for correct function of the Oracle Enterprise stage. So you must demand these SELECT privileges.
by ray.wurlod
Thu Mar 01, 2007 3:59 pm
Forum: General
Topic: Problem logging into a DS project
Replies: 10
Views: 2760

You probably do not have write permission or appropriate privileges to the DS_LICENSE table, which indicates an improper server installation or someone fiddling with the permissions.
by ray.wurlod
Thu Mar 01, 2007 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata User Query or Datastage
Replies: 3
Views: 1111

The Transformer stage would not be the appropriate stage type in any case; you would use an Aggregator stage to aggregate the data in this fashion. Sort the data as they are extracted, and use Sort method in the Aggregator stage. Or do the aggregations as part of the extraction (which means that you...