return code 139
Hi i am executingthe below script in unix:
sqlplus -s ${SQL_USERID} <<EOF
whenever sqlerror exit sql.sqlcode
begin
UPDATE statement
end;
/
EOF
rc=$?
echo $rc
i am getting the return code as 139.
What does it mean?
How to make the query to be successful?
Thanks