Oracle Function Script Compile Error -


i have function script. in there 2 function like:

  create or replace function  "func1" (     mjob_code in varchar2,     mop_code  in varchar2)   return date        retdate date;    begin  --something--      return(retdate);    end; /    create or replace function  "func2" (     mjob_code in varchar2,     mop_code  in varchar2)   return date        retdate date;    begin  --something--      return(retdate);    end; 

but im getting error , when function in functions, see function compiled this:

   create or replace function  "func1" (     mjob_code in varchar2,     mop_code  in varchar2)   return date        retdate date 

a part of code missing. actualy after ; part missing.

if put create function block missing code , compile works. have many function dont want use that.

how can solve problem? how can compile functions in script?


Comments

Popular posts from this blog

php - Calling a template part from a post -

Firefox SVG shape not printing when it has stroke -

How to mention the localhost in android -