Search found 42189 matches

by chulett
Fri Aug 20, 2010 11:13 am
Forum: DSXchange Testimonials
Topic: Thanks to my friends
Replies: 7
Views: 12321

And then there are the friends you haven't had a chance to work with yet. :wink:
by chulett
Fri Aug 20, 2010 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null in update where clause
Replies: 13
Views: 4686

NULL is never equal to NULL so you'd need explicit "IsNull" checks in the SQL to handle that. Or if the database supports an "NVL" equivalent, wrap both sides of the equality test with equivalent NVL() statements. Make sure you convert nulls to something other than a legitimate d...
by chulett
Fri Aug 20, 2010 8:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Represent multiple records into one with conditions
Replies: 8
Views: 3107

Not sure why @VM would not work as the delimiter. Why not use a different delimiter then, something 'simple' like a pipe for instance?
by chulett
Fri Aug 20, 2010 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Represent multiple records into one with conditions
Replies: 8
Views: 3107

If you are using "value marks" between the fields you should (from what I recall) be able to "unnest" that field during the select of that data and automatically get all values in separate columns. Having it in a lookup may complicate that, I don't know off the top of my head and...
by chulett
Fri Aug 20, 2010 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To get Record count in Transformer
Replies: 15
Views: 18628

That's a valid point - we have no clue how the OP wants to actually use this total and that answer can change the mechanism needed for this.
by chulett
Fri Aug 20, 2010 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To get Record count in Transformer
Replies: 15
Views: 18628

@INROWNUM ... @INROWNUM gives the incremental number for each record, but i want the count of the records coming from source You will need to use an Aggregator to get this number "in job" and really shouldn't be a big deal. Otherwise, you'll need to get the count either before or after jo...
by chulett
Fri Aug 20, 2010 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To get Record count in Transformer
Replies: 15
Views: 18628

@INROWNUM Well, that will give you the record count so far , and you could write out the previous @INROWNUM on a key change to get the count for a key, but you'll miss the last key group. Also, it only gives you the count in this partition . So, no, there isn't really a way. You could reduce the co...
by chulett
Fri Aug 20, 2010 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User defined variable in DB2
Replies: 3
Views: 1971

Not sure what you are asking. Those variables will be established in the job's processing environment when it is started. You can check the log's second entry to see all of the environment variables in effect when the job ran. If it makes you feel better, you could take them out of all of those proj...
by chulett
Fri Aug 20, 2010 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Set stage
Replies: 5
Views: 1720

That doesn't really make much sense, are you certain about how it was created? See threads like this one that explain the expected behaviour.
by chulett
Thu Aug 19, 2010 5:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to login to DataStage
Replies: 9
Views: 5897

Per Sainath: 45 client license means 45 different users( with different ip address) can login at any give time. Does it mean if user1 opens 5 differnet client tools (say 2 designer,1 director and 1 administrator window). Will rest 44 users can still open different n number of different client tools...
by chulett
Thu Aug 19, 2010 5:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning with CFF Stage.
Replies: 5
Views: 1399

What Arnd wanted to know was the exact, original COBOL "PICTURE" clause for the field, and we're guessing from the Binary(4) bit it is some kind of COMP-1 field. Can you confirm, please?
by chulett
Thu Aug 19, 2010 9:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting ds_loadlibrary: Win32 error in LoadLibrary of sybase
Replies: 21
Views: 9623

Which would generally be fine but it sounds like the Sybase Client installation may not be quite kosher. Perhaps you should re-install it and see if that helps?
by chulett
Thu Aug 19, 2010 9:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Problem
Replies: 11
Views: 7137

We have found that you need to stick with the "recommeded" i.e. supported compilers, otherwise things tend to not work correctly.
by chulett
Thu Aug 19, 2010 9:09 am
Forum: General
Topic: Protect or Unprotect a project in DS 8.1
Replies: 4
Views: 2954

So... that makes me wonder how to do the "un" part. :?
by chulett
Thu Aug 19, 2010 9:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User defined variable in DB2
Replies: 3
Views: 1971

While you may not refer to them explicitly in the job, the stage will leverage them 'under the covers', much like Oracle needs to know $ORACLE_HOME, etc.