Page 1 of 1

SiGSEGV error

Posted: Thu Dec 04, 2003 12:19 pm
by sachinc
I am getting the error "SiGSEGV error", while I compile my job. My job has a transformer stage with some functions (like stringtoDate).

Has anyone got this error before ? Any pointers will help.

SiGSEGV error

Posted: Thu Dec 04, 2003 1:14 pm
by bigpoppa
Please post the entire error. Which compiler are you using? What kind of UNIX OS? Also, please post the generated transformer code.

Thanks,
BP

Re: SiGSEGV error

Posted: Thu Dec 04, 2003 4:07 pm
by Teej
sachinc wrote:I am getting the error "SiGSEGV error", while I compile my job. My job has a transformer stage with some functions (like stringtoDate).

Has anyone got this error before ? Any pointers will help.
That is an UNIX way of killing your job. Segmentation Violation tends to point to attempts to write to a memory location that they are not authorized to write to. Some of the causes may be a poorly defined column width (where some data are larger than what the columns are defined to hold).

As stated earlier - Post the entire log, and we can dig through it for you.

(as an aside, SIGBUS is the violation of attempting to read from a memory location that is not a part of what you're supposed to read.)

-T.J.