Search found 15603 matches

by ArndW
Wed Apr 26, 2006 3:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write Failed for hash File
Replies: 8
Views: 1945

Can you put a derivation of OCONV(In.Key,'MCP') for your key as a test, this will replace unprintable chars with a period ".". This would show that your key perhaps does contain a field mark or value mark (which is not allowed) or a null.
by ArndW
Tue Apr 25, 2006 10:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director cannot get job status
Replies: 8
Views: 4368

If you do a COUNT DS_JOBS or COUNT DS_JOBOBJECTS do you get 0 records for either or both? If so, then you have a problem that will probably necessitate restoring a backup.
by ArndW
Tue Apr 25, 2006 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: extracting time from date
Replies: 7
Views: 1256

You are, of course, correct. I'm just so used to European (or military) time that the AM/PM text completed zipped by me :). I think the FIELD function is a better way to go in any case, since it is more robust than using straightforward positional values.
by ArndW
Tue Apr 25, 2006 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to apply ROUND function in datastage
Replies: 4
Views: 3187

What would ROUND(44,2) result in? I though that rounding took a real number and turned it into an integer or rounded a real number to a given number of significant digits.
by ArndW
Tue Apr 25, 2006 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Terminating abruptly and getting locked
Replies: 21
Views: 4892

Killing a process from UNIX should only be done as a last resort; and killing a process using "kill -9" should only be done when you know exactly what you are doing. The best thing you can do is to enable the deadlock daemon so that if any spurious locks are left around they are cleanly removed on a...
by ArndW
Tue Apr 25, 2006 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to apply ROUND function in datastage
Replies: 4
Views: 3187

Parallel Job Developer's Guide 3-37, 3-38, 5-21 to name just 3. Exactly what data type are you looking to round off and in which stage do you want to do this? For a Modify stage look at pages 28-8 onwards.
by ArndW
Tue Apr 25, 2006 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup fileset vs Dataset
Replies: 8
Views: 8979

Each process loads into local virtual memory, not into shared global memory so they will each have their "own" copy in memory.
by ArndW
Tue Apr 25, 2006 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: extracting time from date
Replies: 7
Views: 1256

Craig - good thought, the function to use is
Field(In.ColumnName," ",2,1)
(although yours will work in this instance because there are no trailing spaces)
by ArndW
Tue Apr 25, 2006 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing orphan log files
Replies: 9
Views: 3270

Also, use -file instead of -filepath (even when specifying a fully qualified path)
by ArndW
Tue Apr 25, 2006 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: QUERY UNIVERSE DATABASE
Replies: 18
Views: 7773

dwblore, please start a new thread as your question is unrelated to the current one.
by ArndW
Tue Apr 25, 2006 6:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: extracting time from date
Replies: 7
Views: 1256

Just use the substring function, use RIGHT(In.ColumnName,11) since your string looks like it has a variable length date portion.
by ArndW
Tue Apr 25, 2006 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing orphan log files
Replies: 9
Views: 3270

You shouldn't fix the DATA.30 file, but the higher level type 30 directory of RT_STATUS119. And don't run it with "fix" until you know what is going to happen (i.e. how many and what type of errors) and after you take a copy.
by ArndW
Tue Apr 25, 2006 5:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in Reading the fixed width files in Parallel jobs
Replies: 4
Views: 1114

Parallel job sequential file stages can handle fixed width files in much the same was as server jobs do. They are much more sensitive to data types and column defaults than server jobs but once you have a sequential file input set up correctly it does run very quickly. What, specifically, is/are you...
by ArndW
Tue Apr 25, 2006 5:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing orphan log files
Replies: 9
Views: 3270

The internal corruption is not a good thing, you will need to run the $DSHOME/bin/fixtool program on the files before anything can be done with them. Are there just a few that you can do this step manually, or are there very many?
by ArndW
Tue Apr 25, 2006 4:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with some sequences compilation
Replies: 16
Views: 2796

ppalka - I thought I asked twice to check permissions.
As a developer you should be in the group which has RW permissions to all the files in the project directory.