Signal 11 error, what does it mean??!! [message #172405] |
Tue, 16 May 2006 06:41 |
luaim
Messages: 3 Registered: May 2006 Location: Jordan, Amman
|
Junior Member |
|
|
hi
i need help...
when i run a customized postscript report in a 11.5.10 environment, the report fails and the log gives me a signal 11 error... what does this error mean? and what should i do to solve it?
|
|
|
|
Re: Signal 11 error, what does it mean??!! [message #172510 is a reply to message #172405] |
Wed, 17 May 2006 00:19 |
sheshukl
Messages: 13 Registered: February 2006 Location: Pune
|
Junior Member |
|
|
This may help you.
Signal 11 :
"Unaligned memory access" is a message coming back from the UNIX operating system
letting you know that an Oracle executable has tried to access memory incorrectly. It's not a problem
with UNIX but is part of the operating system's mechanism of protecting itself from crashing.
Simple causes may include:
1) Not enough disk space in $APPL_TOP/out directory where the concurrent manager creates the
report output files.
2)Lack of storage space in table spaces, rollback segments etc
3)Very complex SQL statements with many Group By columns (which may not all be required)
4)Incorrect OS permission’s
5)Parameter mismatches
6)The reports were FTPed incorrectly (ASCII instead of binary)
7)A 'Numeric or Value error' on some procedure code (although this may also cause a Signal 4
error). Typically this is because you have a field or variable which is too small to hold a value
passed to it, which often happens when you are summing values.
Thanks,
Shesh
|
|
|
|
|