Search found 53125 matches

by ray.wurlod
Tue Jul 05, 2005 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Administration Question (New Users)
Replies: 1
Views: 777

Is the DataStage Developers group associated with a DataStage role? Were you actually successful in adding the user to the group?
by ray.wurlod
Tue Jul 05, 2005 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Processing files dynamically
Replies: 4
Views: 1378

Yes, you can expose your DataStage job as a web service. Search the forum for RTI (real time interface). This is probably a good approach in this case.
by ray.wurlod
Tue Jul 05, 2005 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing output from shell script to a job
Replies: 11
Views: 3318

What type is the job parameter? String? Integer? Date? The error code -4 says that the value you've provided is not apporpriate for the parameter type. What value was provided? Check for line terminator characters in $CommandOutput - you may need to trim them.
by ray.wurlod
Tue Jul 05, 2005 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File not showing any records
Replies: 3
Views: 958

An empty dynamic hashed file will have DATA.30 4KB in size and OVER.30 2KB in size. The first 2KB in each case is a header containing control information; the second 2KB in DATA.30 is the first group buffer. If you use MINIMUM.MODULUS then DATA.30 will be appropriately larger. If you use GROUP.SIZE ...
by ray.wurlod
Tue Jul 05, 2005 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not able to Connect to Oracle From Datastage 7.0.1.1r4
Replies: 9
Views: 4356

You only need to give 775 permission to dsenv file. Whatever you need to do in .profile to talk to Oracle you also need to do in dsenv file.
by ray.wurlod
Tue Jul 05, 2005 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Logging warnings in seq file
Replies: 7
Views: 2341

I seriously doubt that you will ever collect an Abort message in an after-job subroutine, since the job will have aborted before executing the after-job subroutine. You would need to do this in a Routine Activity in a job sequence.
by ray.wurlod
Tue Jul 05, 2005 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: help needed with hash file with key combinations
Replies: 7
Views: 1742

Isn't this a good job for an Aggregator stage with some combination of Max or Last as the aggregate function?
by ray.wurlod
Tue Jul 05, 2005 3:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling of data
Replies: 2
Views: 1042

Are you sure that the data are stored in this format, or is it only that they are being displayed in this format? What is your proof? It is very unusual to store data in a decimal exponential format. (There is an IEEE standard for storage of floating point numbers in a binary exponential format, but...
by ray.wurlod
Tue Jul 05, 2005 2:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOW TO GIVE NOT EQUAL CONDITION IN LOOKUP
Replies: 5
Views: 3277

Only "=" works with the Hashed File stage. To use "<>", "BETWEEN" or any other operator you need an SQL-based stage serving the reference link. A UV stage would do it, or any database stage. But first ask yourself is this really what you want? It will return very many rows for every row processed on...
by ray.wurlod
Tue Jul 05, 2005 2:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Name Case Conversion
Replies: 2
Views: 2160

Oconv() is not available in parallel jobs. However you have case conversion functions available in the Modify stage and the Transformer stage. In your case, however, needing an "initial capitals" conversion, these choices are not easy (particularly O'Brien and the like). You can write your own expre...
by ray.wurlod
Tue Jul 05, 2005 12:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Job is aborted in DS7.5.1
Replies: 13
Views: 5238

Unfortunately the only detection in DataStage is the timeout when a job fails to start within a hard-coded interval. That is we can't tune the timeout. And, as you noted, the job that can not start aborts. You probably could do something with UNIX, but there's nothing supplied "out of the box" as fa...
by ray.wurlod
Mon Jul 04, 2005 9:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to avoid NULL to reject - in SWITCH case
Replies: 20
Views: 6515

It may, but you have to handle null explicitly and have the target column nullable.
by ray.wurlod
Mon Jul 04, 2005 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Find Last Record in File
Replies: 13
Views: 3366

:idea:
Even better, the technique generalizes to parallel jobs. Using variables in COMMON does not.
by ray.wurlod
Mon Jul 04, 2005 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Job is aborted in DS7.5.1
Replies: 13
Views: 5238

Hello DaeHwan,

Your monitoring will show that each job uses more than 50% of a CPU if run separately. This tells you, by simple arithmetic, that 30 jobs on 16 CPUs is overloading the machine. This is why you must run fewer jobs at a time to overcome this problem.
by ray.wurlod
Mon Jul 04, 2005 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How bad is a transformer?
Replies: 3
Views: 1090

I don't know where this is coming from? Certainly including a Transformer stage in a parallel job will require more time to compile, because source code has to be generated and compiled. And there will be a small overhead in initial invocation of any libraries needed at run time. But would not the s...