Hi all,
how do I run a script for several connections without opening the connections one by one and F5-running the script?
In TOAD one could do it like:
CONNECT user1/pwd1@12.34.56.78:1521/DB11G
@myscript.sql
CONNECT user2/pwd2@12.34.56.78:1521/DB11G
@myscript.sql
CONNECT user3/pwd3@12.34.56.78:1521/DB11G
@myscript.sql
This question was also asked on SO and IMHO the way I showed is correct, see the SQL Developer User Guide.
Thank you
Blama