Hello,

I do have a command-file named "install.sql" with the following content (ok, it's just an example;-)

--------------------------------------------

CREATE OR REPLACE PACKAGE mbi_a IS
PROCEDURE xprc_mbi_a_1;
END mbi_a;
/

CREATE OR REPLACE PACKAGE BODY mbi_a IS
PROCEDURE xprc_mbi_a_1 IS
BEGIN
NULL;
END xprc_mbi_a_1;
END mbi_a;
/

exit application

--------------------------------------------

I use this command to install the package:

plsqldev userid=user/secret@db commandfile="install.sql"


My question is if it's possible to obtain the compiler-hints generated during the compile-process?

I know that I can get them using the Show-Compiler-Hints-Function from the Tools-menu, but if
I am running PLSQL-Developer in batch-Mode there is no possibility to do this.

The goal is to use PLSQL-Developer in a nightly-build-process.


Thanks f