Dear Sir
create function FUNC_MEMO() returns OPAQUE AS '
BEGIN
insert into HST_MEMO (CHART_NUMBER,CREATION_DATE,MEMO) values(old.CHART_NUMBER,old.CREATION_DATE,old.MEMO);
return new;
END;
' LANGUAGE 'plsql';
when I try to execute the abouve function i am getting following error.
ERROR: Unrecognized language specified in a CREATE FUNCTION: 'plsql'.
Recognized languages are sql, C, internal, and created procedural languages.
please give me remedy for the problem.
regards
Krishna reddy