How to invoke PLSQL developer from command line

kdinesh

Member
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
 
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.
 
Is there a quite mode? I'm using plsql developer also for generating documentation using "plugin plsqldoc generate" statement.
 
Back
Top