Search found 15603 matches

by ArndW
Thu Sep 10, 2009 1:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job design help
Replies: 6
Views: 1642

No worries. It was just the way the problem was formulated sounded very much like a typical open-ended interview question.
by ArndW
Thu Sep 10, 2009 1:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Readin data
Replies: 11
Views: 1798

Yes, but you need to handle this in your transform. With DCOUNT(In.String,'~') you find out how many tilde you have, then with FIELD(In.String,'~',nnn) you can pick out field nnn from the string. The rest is up to you and your business logic.
by ArndW
Thu Sep 10, 2009 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job running for ever
Replies: 10
Views: 7479

Use APT_DUMP_SCORE and look at the score, I would wager that you are getting inserted extra tsort operators that are slowing down the job by doing extra sorts. Note that not only does your join data need to be sorted, but DataStage needs to know that it is sorted (through inserting a sort operator, ...
by ArndW
Thu Sep 10, 2009 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC to ASCII conversion for '|' character
Replies: 12
Views: 16309

As Craig has already hinted, the problem might be in a nonbinary FTP or transfer from the host. Just create a UNIX file with an ASCII capital "O" (4F) and then push that through your CFF stage to see if you still have the problem.
by ArndW
Thu Sep 10, 2009 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared Container and Allow Multiple Instance
Replies: 5
Views: 2700

Ray - yep, you are right. But at the moment I'm sitting in an office no more than 2 meters from Klaus ;)
by ArndW
Thu Sep 10, 2009 12:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling OSH script from UNIX Server
Replies: 22
Views: 13403

Can you run "orchadmin check" after executing the dsenv file?
by ArndW
Thu Sep 10, 2009 12:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete the duplicates from Database
Replies: 8
Views: 3190

Select the data in a job, sort the data in DataStage, use remove duplicates and the "deleted" entries from that stage to delete the records in the original table. Not fast, but it works.
by ArndW
Thu Sep 10, 2009 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Joba are keep on running without loading single record into
Replies: 10
Views: 4087

While the DBA might be correct in stating that there are no errors in the database, he or she should be checking the locks, particularly deadlocks.
by ArndW
Thu Sep 10, 2009 12:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Readin data
Replies: 11
Views: 1798

Declare the file as a long VarChar() or Char() string with no delimiters. Then, in a transform stage, use function such as DCOUNT() and FIELD() to parse the string into the 2 components you wish.
by ArndW
Thu Sep 10, 2009 12:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: starting a job sequence from middle
Replies: 3
Views: 1007

You could add a parameter to your sequence and use that value to conditionally skip parts of your sequence.
by ArndW
Thu Sep 10, 2009 12:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job design help
Replies: 6
Views: 1642

Even though the phrasing of the question sounds like an excercise question for an interview, I'll give it a go: 1. Partitioning. What method of partitioning you use makes no difference in the join as long as it guarantees that the join key is present in the same partition for all the input links. No...
by ArndW
Thu Sep 10, 2009 12:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Director Job Log Empty
Replies: 5
Views: 1825

The only thing I can think of is that the user's credentials aren't sufficient for write access to the project directory and/or the log files.
by ArndW
Thu Sep 10, 2009 12:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data truncation warning
Replies: 2
Views: 2220

You need to find out which column is benig truncated and if it makes a difference. In a test copy, remove the columns one-by-one until you identify which one it is. It might be that, at 8.1, DataStage is more vocal about giving out warnings, meaning that you might have had the problem before, but ju...
by ArndW
Wed Sep 09, 2009 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC to ASCII conversion for '|' character
Replies: 12
Views: 16309

Are you doing an explicit conversion from EBCDIC to ASCII in your CFF stage? Is that field declared as Char(1)?
by ArndW
Wed Sep 09, 2009 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC to ASCII conversion for '|' character
Replies: 12
Views: 16309

Standard EBCDIC 4f is a pipe symbol, so that is good. But after copying it to UNIX it should still be 4F, so i am not sure what your value of "O" means - if the value isn't 4F then the error isn't inside DataStage.