Hi,
I'm a bit puzzled by the fact that the forward slash does not raise an error in a SQL Developer script.
For instance:
select * from dual;
/
would result in that select being executed twice if executed from SQL Plus, but only once when executed from SQL Developer.
I would think that the forward slash is considered as a comment sign, given the fact that
select * from dual;
/ this should not be a comment
select * from dual;
works totally fine from SQL Developer.
IMHO either it should take the "/" as SQL Plus (recall last executed command) or just throw an error. Ignoring it can lead to confusion.
Regards,
Roberto