K kdinesh Member Feb 2, 2005 #1 Hi, I have a batch script which is calling PLSQL developer after that it should invoke the Command window and run my oracle script. Any help is greatly appreciated. Dinesh
Hi, I have a batch script which is calling PLSQL developer after that it should invoke the Command window and run my oracle script. Any help is greatly appreciated. Dinesh
Marco Kalter Administrator Staff member Feb 2, 2005 #1 You can use the "commandfile" parameter. For example Code: plsqldev userid=scott/tiger commandfile=d:\tmp\test.sql This will start PL/SQL Developer, connect as scott, and execute the specified command file. If you want to exit PL/SQL Developer after the script is executed, include "exit application" as the last command in the file.
You can use the "commandfile" parameter. For example Code: plsqldev userid=scott/tiger commandfile=d:\tmp\test.sql This will start PL/SQL Developer, connect as scott, and execute the specified command file. If you want to exit PL/SQL Developer after the script is executed, include "exit application" as the last command in the file.
R radino Member Mar 12, 2014 #1 Is there a quite mode? I'm using plsql developer also for generating documentation using "plugin plsqldoc generate" statement.
Is there a quite mode? I'm using plsql developer also for generating documentation using "plugin plsqldoc generate" statement.
Marco Kalter Administrator Staff member Mar 13, 2014 #1 There is no quiet mode, it will always show what it is doing.