when i execute a script like this
create or replace function mytest return varchar2 is
/*-
-*/
begin
return '1';
end;
/
that execute error.
I think this is a bug of command window,becase i execute this in sqlplus is sucessful.
the reason is my script has string "-*/",but my script is...