I am trying to create a simple oracle function in table plus an I always get the following error in
"Query 1 ERROR: ORA-24344: success with compilation error"
Following is the function I am using to execute.
CREATE OR REPLACE EDITIONABLE FUNCTION "PMD_OWNER"."GET_SUM"
(first_num INT, second_num INT)
return INT
IS
var_ret INT;
BEGIN
var_ret := first_num + second_num ;
return var_ret;
END GET_SUM;