Search found 15603 matches

by ArndW
Mon Jul 12, 2010 3:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File
Replies: 20
Views: 4321

Is mgt_code your key in the hashed file and declared as such inyour lookup? Are both VarChar(10) columns trimmed, i.e. with no hidden extra leading or trailing spaces?
by ArndW
Mon Jul 12, 2010 3:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Attempting to Cleanup after ABORT raised in stage XXXXXXXX
Replies: 3
Views: 3587

Re: Attempting to Cleanup after ABORT raised in stage XXXXXX

brajesh527 wrote:...Unable to create temporary work file, aborting.
[ENOSPC] No space left on device
This would be the directory you are using for temporary workspace that is filling up.
by ArndW
Fri Jul 09, 2010 9:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to do funnel in server edition
Replies: 6
Views: 2220

Hah - I obviously overlooked the "server" part of the question but did think it was an interview question, so I got the response at least partially correct :D .
by ArndW
Fri Jul 09, 2010 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Send mail
Replies: 2
Views: 1405

This error is coming from your SMTPMail, not DataStage. I did a google "SMTPMail Network error 10061" and got many hits. The "smtp.md2net.com.br" server is visible from my machine, but I don't have a "telnet" program installed to test if the machine at that address is a...
by ArndW
Fri Jul 09, 2010 4:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to do funnel in server edition
Replies: 6
Views: 2220

With a post like that you won't get many qualified responses. The simple answer is "drop it on your canvas in the designer and attach two or more inputs and one output to it". Unless you explain what your issue is, no more help can be forthcoming.
by ArndW
Fri Jul 09, 2010 4:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator error.
Replies: 2
Views: 1685

Make a copy of the job and remove the second aggregator and join stage (I am assuming that your first aggregator is called "Aggregator_1"). Recompile and see if the error is reproduceable. If yes, then please post some information on what you are doing in the aggregator. SIGSEGV is a segme...
by ArndW
Fri Jul 09, 2010 1:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Max Value of Length property for a LongVarChar Field Type
Replies: 2
Views: 1666

Server imposes no such limitation on string length, so if that is what MQ can handle then it should work. How about testing it - that shouldn't take more than half an hour to set up the queue and read/write the long string to/from it.
by ArndW
Thu Jul 08, 2010 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge Stage -Differnence in row count
Replies: 4
Views: 1672

There is no easy answer. I would pare down the data to a few rows which demonstrate the problem, i.e. which deliver different results, and then see if there is some sort of explanation.
by ArndW
Thu Jul 08, 2010 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Force a calling job to abort based on the child job's status
Replies: 2
Views: 2002

You can issue a DSStopJob(DSGetJobInfo(DSJ.ME,DSJ.JOBCONTROLLER)) call, this will issue a stop request to the parent job when only one parent exists; with more parents (a calling b calling c) you would need to parse the result of DSGetJobInfo(DSJ.ME,DSJ.JOBCONTROLLER) to get all the jobs. This is on...
by ArndW
Thu Jul 08, 2010 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heap Allocation Failed-Increasing Heap Size Doesn't Help
Replies: 9
Views: 12922

You've hit the limit set by your ldedit value. The quick solution is to change all char and varchar columns to varchar columns with no size limit; this can reduce your memory use per row. If the data width cannot be decreased then I would either consider changing your lookup to a join or to split yo...
by ArndW
Thu Jul 08, 2010 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: nullable issue because empty table
Replies: 1
Views: 1348

Are you inserting all the table columns when it is empty? If there are columns defined that you don't have in your job and that don't have any default values set by triggers and that are not nullable you will get this error.
by ArndW
Wed Jul 07, 2010 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage detected
Replies: 25
Views: 10255

The first line in the director log will show the runtime values for the parameters, what does your run show for #HashFileDirectory#? Also, in the hashed file stage, what did you specify for the full name, perhaps

Code: Select all

#HashFileDirectory#/inv_mg_co_symbols
?
by ArndW
Wed Jul 07, 2010 8:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage detected
Replies: 25
Views: 10255

I though paraphrasing and reiterating might help 8)
by ArndW
Wed Jul 07, 2010 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage detected
Replies: 25
Views: 10255

After resetting your job in the director there will be a couple of new log entries. One of those shows up with the text "From previous run..."
by ArndW
Wed Jul 07, 2010 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-01400: cannot insert NULL
Replies: 17
Views: 9086

Could you please post the whole error message. This type of problem could occur if someone has modified your table DDL and added a new, not nullable, column -- but the error message will state which column is causing the error. You can also debug this by putting a PEEK stage right before you databas...