N nic Member Mar 13, 2026 #1 Hi, we really like and extensively use the beautifier from PL/SQL Developer. Would it be possible to extend the Command-Line interface so that one could use the CLI to beautify a certain file? Kind regards, Nico
Hi, we really like and extensively use the beautifier from PL/SQL Developer. Would it be possible to extend the Command-Line interface so that one could use the CLI to beautify a certain file? Kind regards, Nico
Marco Kalter Administrator Staff member Mar 16, 2026 #2 In the Command Window you can use the BEAUTIFY command for batch scrip processing. For example: Code: beautify c:\scripts\employee.spc beautify c:\scripts\employee.bdy Note that the original file or object is modified. If you have a script with all beautify commands, you can call it from the command-line as follows: Code: plsqldev.exe userid=scott/tiger@chicago commandfile=c:\temp\beautify.script You can end the command script with an "EXIT APPLICATION" command to exit PL/SQL Developer afterwards.
In the Command Window you can use the BEAUTIFY command for batch scrip processing. For example: Code: beautify c:\scripts\employee.spc beautify c:\scripts\employee.bdy Note that the original file or object is modified. If you have a script with all beautify commands, you can call it from the command-line as follows: Code: plsqldev.exe userid=scott/tiger@chicago commandfile=c:\temp\beautify.script You can end the command script with an "EXIT APPLICATION" command to exit PL/SQL Developer afterwards.