Recent content by Thomas Hesse

  1. T

    dbms_output.put + dbms_output.newline

    There is a maximum limit depending on the oracle version. You can create a procedure to handle the output like that: PROCEDURE put_line(p_string_in IN VARCHAR2) IS BEGIN dbms_output.put_line(p_string_in); EXCEPTION WHEN OTHERS THEN dbms_output.enable(1000000)...
  2. T

    PLSQLDOC Rebuild Index doesnt rebuild, it deleted it

    Hi Marco, Yes, it is the same problem from the menu. My root directory was the default one: C:\Program Files\PLSQL Developer\plsqldoc\ I copied everything underneath plsqdoc to F:\plsqldoc which is a network share on a linux box and indexing was successfull !!! BUT if I use my local hard...
  3. T

    PLSQLDOC Rebuild Index doesnt rebuild, it deleted it

    Hi Marco, Any update on that ? I have the same problem. When I rebuild the index it says: SQL> plugin plsqldoc rebuild 0 items indexed. SQL> And the index file only contains only the header line and the references to the documentation is gone. These are my versions: Developer 7.1.5.1398...
Back
Top