Recently I had an informix database server cloned. I created a new stored procedure called sp_foo.
When I run the below SQL to execute a procedure
EXECUTE PROCEDURE sp_foo();
I get the below error when I call a stored procedure.
Error: The system command cannot be executed or it exited with a non-zero status. (State:S1000, Native Code: FFFFFD64)
I'm a little baffled as to why I would get this error. INFORMIX does not give me any additional data to find what is causing the problem.
PS: I'm new to INFORMIX and I'm using WinSQL/Informix ODBC to run the SQL. Also when I ran the SQL in the original server there were no errors.