Search found 15603 matches

by ArndW
Thu Aug 05, 2010 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file with fixed with column view data error
Replies: 9
Views: 4670

If you look at the file in an editor, is it actually fixed width?
by ArndW
Thu Aug 05, 2010 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upsert Error while trying to Update and Insert
Replies: 8
Views: 3872

Please have your DBA check the foreign key FQA551.
by ArndW
Wed Aug 04, 2010 6:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable substitution in Job Control ?
Replies: 9
Views: 3558

If it is any consolation, my initial answer was identical to yours, but I managed to edit it quickly...
by ArndW
Wed Aug 04, 2010 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Download file with the DataStage
Replies: 6
Views: 2275

Sainath, upon re-reading the post I think your interpretation is better than mine :)
by ArndW
Wed Aug 04, 2010 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitions, Lookups, and Nodes
Replies: 11
Views: 2883

Try making the lookup file set write stage "sequential" - that forces a 1-node configuration. My guess for your problem is that a 2-node Lookup fileset cannot be converted to a 4-node "entire" lookup fileset; but I'm just make an uneducated guess since I haven't seen that error m...
by ArndW
Wed Aug 04, 2010 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Download file with the DataStage
Replies: 6
Views: 2275

No. DataStage is not legally downloadable for free off the internet. You can get free test licenses through IBM or their local distributor for DataStage, but that is at their discretion.
by ArndW
Wed Aug 04, 2010 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tranformer stage proframance is not good.
Replies: 4
Views: 1518

Move all your TRIM(link.column) to stage varaibles, that way each distinct TRIM() is only executed once and not several times as is now the case. That will reduce the CPU load somewhat. During execution, turn on the monitor and display the %CPU -> if the value is anywhere consistently below 80% then...
by ArndW
Wed Aug 04, 2010 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitions, Lookups, and Nodes
Replies: 11
Views: 2883

Hmmm... you are most likely correct. But would presuppose that your lookup file set was created with just one partition, is that the case?
by ArndW
Wed Aug 04, 2010 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To remove previous job logs
Replies: 11
Views: 3126

to answer your second question: "no" (otherwise it would have been suggested). A very unclean method would be to clear all log files from TCL (a couple of commands); but since this is your production machine there might be a lot of repercussions to doing a "tabula rasa".
by ArndW
Wed Aug 04, 2010 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable substitution in Job Control ?
Replies: 9
Views: 3558

Craig - he means take the value of a variable as a variable name and assign that variable's value; sort of a like a variable being a pointer to the value of another.
by ArndW
Wed Aug 04, 2010 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared Container - link columns do not match
Replies: 8
Views: 5138

chulett wrote:Sorry... "extra" columns? :?
By that I mean that while the link might show 10 columns, if RCP is turned on there might be additional columns going down that link; those would be the "extra" columns.
by ArndW
Wed Aug 04, 2010 6:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitions, Lookups, and Nodes
Replies: 11
Views: 2883

I can't check right now, but I think it might be that lookup filesets, unlike datasets, cannot be dynamically repartitioned. Is this inded a fileset and can you check via orchadmin whether the fileset partitioning is identical to the runtime partitioning?
by ArndW
Wed Aug 04, 2010 4:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared Container - link columns do not match
Replies: 8
Views: 5138

Could one of the links be using RCP and have "hidden" columns?
by ArndW
Wed Aug 04, 2010 4:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Needed the hint to logic values converting into words
Replies: 3
Views: 1267

If you search the web for a freeware program that does this on your platform, i.e. one that accepts a number as parameter and returns a string representation, then you can implement it via a shell script. Note that if performance is a factor then you will have to use a c++ call.
by ArndW
Wed Aug 04, 2010 4:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable substitution in Job Control ?
Replies: 9
Views: 3558

That functionality doesn't exist in BASIC, one can use "LIT" for constants, but those are evaluated at compile-time and not run-time. You can work around the problem by using an array or dynamic array. e.g. Variables = '' Variables<1> = "test" Variables<2> = "1" NewValu...