Search found 53125 matches

by ray.wurlod
Tue Jul 22, 2008 10:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log report
Replies: 7
Views: 1606

What is it you are viewing in "RT_BP subdirectory" (and, for that matter, which RT_BP subdirectory)? Where does the Hashed File stage specify that the hashed file is? This error would not have occurred if a job had not attempted to write a record into a hashed file for which the key value (the total...
by ray.wurlod
Tue Jul 22, 2008 9:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compilation error in sequence job
Replies: 9
Views: 1499

"Someone" (you or a local administrator) tightened up the permissions. More than that I can not say from here.
by ray.wurlod
Tue Jul 22, 2008 8:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non defined field lengths
Replies: 4
Views: 1210

You don't need to specify lengths when importing the table definition for a delimited file. Only for a fixed-width-format delimited file. Indeed, the field for doing so should be disabled when the file type is specifed as not fixed-width.
by ray.wurlod
Tue Jul 22, 2008 7:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading and writing to the same table
Replies: 3
Views: 3824

Change your requirement (at least that part of it that prescribes updating the same table from which you are reading). You risk causing a self-deadlock situation.

Use two jobs, staging the data in a Data Set.
by ray.wurlod
Tue Jul 22, 2008 7:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Index function is not working
Replies: 7
Views: 1408

lsnovick, can you please set up just this expression in a Routine, and test it with the Test button, and post the actual result (double click on the Result cell)?
by ray.wurlod
Tue Jul 22, 2008 6:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retrieve from Unix file
Replies: 3
Views: 1068

Pre-process the file so that each line has 256 ";" characters. You could even do this in DataStage; read the line as a single VarChar field, add the appropriate number of semi-colons InField : Str(";",256-Count(InField,";")) then re-parse using Column Import stage.
by ray.wurlod
Tue Jul 22, 2008 5:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wait for File
Replies: 4
Views: 1099

That's all correct. 00:00:05 is five minutes. You need a Failure trigger on the WaitForFile activity. StartLoop ---> WaitForFile ---------> EndLoop | Failure | Success | | | | V V JobActivity -------------> Sequencer ---> AnythingElse
by ray.wurlod
Tue Jul 22, 2008 5:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Index function is not working
Replies: 7
Views: 1408

You're not on version 5.x
by ray.wurlod
Tue Jul 22, 2008 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wait for File
Replies: 4
Views: 1099

A loop with six iterations including a WaitForFile activity with a ten minute wait.
by ray.wurlod
Tue Jul 22, 2008 3:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: split records
Replies: 5
Views: 1149

Same approach as I outlined earlier. Split into (MAX) columns, filling with in-band nulls, pivot, then filter out un-needed rows.
by ray.wurlod
Tue Jul 22, 2008 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to avoid inserting spaces with sql loader
Replies: 6
Views: 2822

You're using a fixed-width dat file - these positions have to be filled with something. What value do you have for APT_STRING_PADCHAR ?
by ray.wurlod
Tue Jul 22, 2008 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aborting because of possible memory corruption!
Replies: 2
Views: 881

Or even hardware support - have them check whether any of your memory chips has developed a fault.
by ray.wurlod
Tue Jul 22, 2008 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Addition of two Char Columns in Transformer
Replies: 1
Views: 751

You will get an error. In parallel Transformer stage arithmetic operators apply only to arithmetic operands. Data types are strictly enforced. (If you are using a BASIC Transformer stage, data types are not enforced so, if the data in each string is numeric, then arithmetic will succeed and, if the ...
by ray.wurlod
Tue Jul 22, 2008 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in viewing a file
Replies: 2
Views: 778

How was this resolved?
by ray.wurlod
Tue Jul 22, 2008 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Fixed width file from Sequential file
Replies: 7
Views: 1719

What do you receive on the valid data link? And is any warning logged?