I\'m having a problem trying to run my sql script into oracle using sqlplus. The script just populates some dummy data:
DECLARE
role1Id NUMBER;
user1Id
You need to either put an exit
at the end of the script, or run it as sqlplus username/password@server/dbname < Setup.sql
(i.e. redirected input, <
instead of @
). You can check if that's the issue by just typing 'exit' in the hanging session.
If it is really hanging, have you committed or rolled back the execution from Developer?