Search found 15603 matches

by ArndW
Fri Mar 31, 2006 9:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JObActivity in Sequencer
Replies: 7
Views: 998

I don't know if this problem existed at v5, so it is hard to guess at what the root cause of your problem is. If you can open and compile the job then there ought to be no impact on runtime, but if you can't then it is likely the job won't run.
by ArndW
Fri Mar 31, 2006 9:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Client hangs while trying to view the log files
Replies: 11
Views: 2636

How long have you waited? Sometimes when the log file is huge it can take 10, 15 or more minutes to refresh the detail view. You can change to the directory and see if one of the RT_LOG<nnn> files is much bigger than all others.
by ArndW
Fri Mar 31, 2006 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JObActivity in Sequencer
Replies: 7
Views: 998

This is a known issue at 7.1 and you need to request a patch for your client from your support provider.
by ArndW
Fri Mar 31, 2006 8:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reindexing - going on indefinitely
Replies: 1
Views: 642

Reindexing should not take a long time unless your project has many jobs and entities and your system is overloaded. Most likely you did not get rid of all users on the system and the reindex is waiting for some file lock. Are you certain that all users have exited the system and that no jobs are ru...
by ArndW
Fri Mar 31, 2006 8:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage server migration
Replies: 11
Views: 2632

I took a look at the files and trobinson is correct, the config file that was used is embedded in the dataset along with the schema and file locations. But looking at the orchadmin options it seems that the locations listed as the paths to the data files override any config file inherited attributes...
by ArndW
Fri Mar 31, 2006 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage Problem
Replies: 8
Views: 1485

If you write to a peek stage instead of the dataset does it work correctly?
by ArndW
Fri Mar 31, 2006 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage Problem
Replies: 8
Views: 1485

Have you changed settings in your dataset (execution mode, partitioning, update policy)? Does the log file show that records were going into the dataset?
by ArndW
Fri Mar 31, 2006 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage Problem
Replies: 8
Views: 1485

But what is not working? Are no rows being written to your data set? Are the values wrong? the row counts?
by ArndW
Fri Mar 31, 2006 5:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage Problem
Replies: 8
Views: 1485

Hman,

what is the problem you are getting with parallel mode? All you've told us is that you are not getting entries in the log file.
by ArndW
Fri Mar 31, 2006 3:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help Needed - Job Compilation is extremely slow
Replies: 7
Views: 2414

I had a similar issue a while ago with 7.1 and I could never figure out the problem - the same sequence of keystrokes with my userid on another person's PC would work just fine, but on mine it could take 10 minutes before the screen refreshed. I finally got rid of the issue by doing a client reinsta...
by ArndW
Fri Mar 31, 2006 1:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: keymgt slow performance?
Replies: 37
Views: 10493

rachelsu, it should not be that slow. Perhaps there is something wrong with the file itself. I'm not at a DataStage machine right now, but I seem to recall that this is not a dynamic file (it doesn't need to be, as it holds only a couple of records). I'll post the file name once I get to a machine (...
by ArndW
Thu Mar 30, 2006 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Replacing & character
Replies: 9
Views: 1603

Anna, no, the CONVERT function is useless in this case since the poster wants to convert one character into a sequence of 4 characters. CONVERT('&','&AMP;',In.Column) will not do any changes at all to the value, It will replace "&" with "&" and the rest of the resulting to-conversion...
by ArndW
Thu Mar 30, 2006 10:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Hashed file
Replies: 10
Views: 2860

The reference hashed file needs to be updated from somewhere.
Can you not update your hashed lookup file in your main server job when you insert new rows? This is the most common method of keeping such a lookup file up-to-date.
by ArndW
Thu Mar 30, 2006 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Replacing & character
Replies: 9
Views: 1603

Diya, there is no equivalent to the server ereplace function in a PX transform stage. You can find an occurrence with INDEX or replace one character with one other character using CONVERT but for more than that you would need to write your own short c++ routine.
by ArndW
Thu Mar 30, 2006 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine
Replies: 2
Views: 919

Meena - the call to
Call DSU.GetParameter(STS, "STS", RefFile)
needs a job handle for the value of STS, this is returned from a call to DSAttachJOB(), which you don't have in your routine.