Search found 42189 matches

by chulett
Wed May 16, 2007 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Job Type Identification - Server or PX in Unix
Replies: 7
Views: 1688

I know it's been documented in the forums, I just don't remember the answer. From what I recall, Kim Duke posted some code that illustrated how to check. You can see some of the information in the dsapi.h file under the $DSHOME/include directory. The Repos Information section shows: #define DSS_JOBS...
by chulett
Wed May 16, 2007 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing in to a sequential file trhru routine
Replies: 22
Views: 8126

Actually, that was sb_akarmarkar, I just mentioned it again. As Ray notes, rather than continue to go round and round, the OP should post the code as it stands right now so it can be commented on directly rather than by inference.
by chulett
Wed May 16, 2007 7:23 am
Forum: General
Topic: abt sequential file
Replies: 6
Views: 1580

Forgot about that option... but perhaps that's for the best. :wink:
by chulett
Wed May 16, 2007 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance
Replies: 6
Views: 1638

Plus the fact that 350,000 records really isn't large enough for most changes in job design to provide significant changes in runtime.
by chulett
Wed May 16, 2007 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing in to a sequential file trhru routine
Replies: 22
Views: 8126

Also verify your Server platform - is it actually Windows or is it UNIX perhaps? Sometimes people mark that incorrectly in their initial post, leading to all kinds of chases of the Wild Geeses. As noted earlier, the correct record terminator for DOS/Windows is a CR/LF pair or CHAR(13):CHAR(10) - whi...
by chulett
Wed May 16, 2007 6:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File stage
Replies: 2
Views: 1050

In the Hashed File stage, 'Account' can be thought of as synonymous with 'Project'. Blank = the current Project the job is in, so it can typically be left blank when used. There are very few instances where it would be appropriate to set it to specific value, and then you'd probably want to use a jo...
by chulett
Tue May 15, 2007 8:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference stage problem
Replies: 2
Views: 796

If there's only six records in each file, why not post the contents of each?
by chulett
Tue May 15, 2007 8:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I use Insert or update statement in User defined sql?
Replies: 9
Views: 1797

You've got what, 19 parameter markers in the Insert statement and something like 27 in the Update. It doesn't work like that. They are positional markers - how many columns did you define in the stage? You are also re-using field names in the update sql, are you including the column names twice in t...
by chulett
Tue May 15, 2007 5:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle bulk load stage
Replies: 2
Views: 931

I don't understand why you would be seeing the row counts climb over the number you are actually loading into the table. However, there is typically a period of time when the counts 'stop' because the records have been loaded, but Oracle is doing its cleanup work. This typically involves updating / ...
by chulett
Tue May 15, 2007 4:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Edit DDL
Replies: 6
Views: 1198

As you've noticed, there's no DataStage specific books out there to be had. However, you are doing yourself a disservice if you don't have this book in your library.
by chulett
Tue May 15, 2007 4:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Scheduler - Simple Question
Replies: 1
Views: 686

Anyone with Director access can see if the job ran successfully. Only the user that scheduled the job can see the scheduling information.
by chulett
Tue May 15, 2007 11:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can we use if..then...else conditions in a stage variable
Replies: 13
Views: 3413

As I said, there's no end required in a derivation if-then-else.
by chulett
Tue May 15, 2007 10:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can we use if..then...else conditions in a stage variable
Replies: 13
Views: 3413

Do we have to guess what the error is? Where's your 'else'?
by chulett
Tue May 15, 2007 10:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can we use if..then...else conditions in a stage variable
Replies: 13
Views: 3413

No 'end' required.
by chulett
Tue May 15, 2007 10:02 am
Forum: General
Topic: abt sequential file
Replies: 6
Views: 1580

Because it doesn't really make any sense to do a lookup directly against sequential media. Load it in a hashed file and then do the lookup.