Search found 15603 matches

by ArndW
Thu Aug 23, 2007 4:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataTypePicComp3Unsigned
Replies: 3
Views: 809

COBOL has a COMP-3 attribute that can be applied to numbers. Instead of storing them as ASCII digits the COMP-3 type used BCD (binary coded decimal) to store two digits per byte. This routine just changes that binary type back into digit form.
by ArndW
Thu Aug 23, 2007 2:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Massive upsert with 4 nodes take too much time
Replies: 5
Views: 1529

If the number of columns and number of data bytes are similar in the slow load and the fast load I really would look in Oracle to see if you might have slow triggers.
by ArndW
Thu Aug 23, 2007 2:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataTypePicComp3Unsigned
Replies: 3
Views: 809

I'm not at a DataStage machine so I can't check, but it sounds like a cobol type conversion routine as part of the sdk. Actually, it looks more like a datatype and not a routine - where did you see this? If it is in the routines tree then you can always open up the routine and look at the source, th...
by ArndW
Thu Aug 23, 2007 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in transformer stage during compilation
Replies: 2
Views: 1005

Hello Arvind and welcome to DSXchange.

You need to have the correct c++ compiler installed on your system. Most stages don't use the compiler, but the transformer stage does.
by ArndW
Thu Aug 23, 2007 2:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal file corruption detected. File must be repaired..?
Replies: 2
Views: 2632

Hello and welcome to DSXchange. You will find that you get better answers when you post in the correct forum; in addition this problem has been discussed numerous times before, use the search button above. In your case you can go to the designer, save your job under another name, delete the original...
by ArndW
Thu Aug 23, 2007 12:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup Problem
Replies: 4
Views: 1031

This is case of thinking of using a hashed file to store the lookup table and, with luck, having that lookup fit into memory. If that works out you might be back to almost your original speeds.
by ArndW
Wed Aug 22, 2007 11:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in look up when it is long string
Replies: 8
Views: 2145

Yes, exactly. There is only one physical unique key; if you specify multiple keys in a job it combines them to one string internally.
by ArndW
Wed Aug 22, 2007 11:41 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: Problem using SCP command in Execute command Stage
Replies: 2
Views: 2571

lol - those names and paths look awfully familiar!

the scp format for you is user:password@node
by ArndW
Wed Aug 22, 2007 11:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in look up when it is long string
Replies: 8
Views: 2145

Abu - that is a good thought, but unfortunately it doesn't work that way. Multiple key definitions in DataStage actually go into just one key. Hashed files have one and only one key and it must be unique.
by ArndW
Wed Aug 22, 2007 11:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitions and Nodes configuration problem
Replies: 16
Views: 5033

lokesh - how often does this need repeating? Using "auto" partitioning will not guarantee that a job will work correctly! Let's take a very simple example. The source file has 2 columns, a numeric sequential row number and a numeric Employee number. Let us assume the default "auto" partitioning is d...
by ArndW
Wed Aug 22, 2007 11:17 pm
Forum: Site/Forum
Topic: World Community Grid - A call for volunteers
Replies: 1
Views: 1770

World Community Grid - A call for volunteers

The tagline of the World Community Grid is "You can help change the world" and I think that it is a worthwhile endeavour indeed. The project makes use of grid computing to effectively weld together a supercomputer by scavenging free CPU cycles on user's PCs. Any time that the Windows backstop proces...
by ArndW
Wed Aug 22, 2007 10:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conditional execution of next job in sequence
Replies: 22
Views: 5767

That means that the generated code in a Job Sequence doesn't contain the "INCLUDE DSINCLUDE JOBCONTROL.H" statement, and you won't be able to use these routines. You will have to write a small routine (or get someone to e-mail you the routine listed earlier in this thread) that calls DSAttachJob(), ...
by ArndW
Wed Aug 22, 2007 10:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conditional execution of next job in sequence
Replies: 22
Views: 5767

I posted a full routine, but you would need to join as a premium member to use it. Lookup up DSAttachJob() in the docs, it has 2 parameters.
by ArndW
Wed Aug 22, 2007 8:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: last calendar of month.
Replies: 7
Views: 2091

I just re-checked my test program and I just realized that the PEEK stage output lists the last column first so I got my +s and -s reversed.

Mea Culpa - you are right. Use -1 to subtract a day.
by ArndW
Wed Aug 22, 2007 7:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: last calendar of month.
Replies: 7
Views: 2091

Good try JoshGeorge, but wrong. I stand by my original post :D

(But I did do a quick check by writing a test job to make sure I wasn't wrong before posting)