Search found 15603 matches
- Mon Jul 12, 2010 3:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File
- Replies: 20
- Views: 4321
- 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
This would be the directory you are using for temporary workspace that is filling up.brajesh527 wrote:...Unable to create temporary work file, aborting.
[ENOSPC] No space left on device
- 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
- Fri Jul 09, 2010 9:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Send mail
- Replies: 2
- Views: 1405
- 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
- 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
- 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
- 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
- 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...
- 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...
- 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
- 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- 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
- 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
- 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...