Teradata_Enterprise_3,6: Caught exception from runLocally():

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
trammohan
Participant
Posts: 47
Joined: Thu Nov 13, 2003 12:47 pm

Teradata_Enterprise_3,6: Caught exception from runLocally():

Post by trammohan »

Hi,

I am getting the following error while reading the data with teraread after processing 90million records ..... total records in the table is 200 million records

Teradata_Enterprise_3,6: Caught exception from runLocally(): APT_BadAlloc: Heap allocation failed.

Teradata_Enterprise_3,4: Operator terminated abnormally: received signal SIGSEGV


Can anyone help me?

thanks
ram
Teej
Participant
Posts: 677
Joined: Fri Aug 08, 2003 9:26 am
Location: USA

Re: Teradata_Enterprise_3,6: Caught exception from runLocall

Post by Teej »

UNIX like to throw SIGBUS and SIGSEGV. SIGBUS generally refers to the attempt to read from a memory location that you are not authorized to read from. SIGSEGV generally refers to the attempt to write to a memory location that you are not authorized to write on.

Some of the possible causes:
  • 1. You are passing data that are larger than the defined lengths. This is likely based on what you said. Pay attention to your warning messages and fix all you could possibly fix.

    2. You ran out of memory (and swap space). This is unlikely based on what you said, but can be possible.
-T.J.
Developer of DataStage Parallel Engine (Orchestrate).
Post Reply