Recent content by MundeX

  1. MundeX

    PL/SQL Beautifier

    Formating WHERE statement in this way perfectly show logical relationships between terms. It's possible to add these features into next version?
  2. MundeX

    PL/SQL Beautifier

    It's possible to set PL/SQL Beautifier to get this (part of packages body procedure; cursor definition): The point is cursor parameter definition and WHERE clause: AND/OR and statement in parentheses.
  3. MundeX

    ORA-00933 in SQL Window

    Exactly so mean. I would like to make "/" was always regarded as the end of command regardless of the number of spaces.
  4. MundeX

    Wrong object chosen to preview

    Hmm, You right :)
  5. MundeX

    ORA-00933 in SQL Window

    I'm able to somehow turn off? To "/" was always the "/"?
  6. MundeX

    Can't stop executing in SQL Window

    I known. I'm talking about the situation when execute many anonymous block BEGIN .... END; For example: BEGIN (...) END; / CREATE PACKAGE BODY ... (...) END; / BEGIN (...) END; / CREATE TABLE .... / DROP INDEX .... (...) (5000 line later) (...) <<< I want STOP executing HERE >>> (...) (5000...
  7. MundeX

    Wrong object chosen to preview

    After typing in a SQL Window: select * from dual dbms_output restrains the Ctrl+Shift and click on highlighted dbms_output then get description dual table instead dbms_output package
  8. MundeX

    ORA-00933 in SQL Window

    Statement (no errors): SELECT * FROM DUAL / Statement (with error ORA-00933): SELECT * FROM DUAL / When befor "/" I put space (one or more) get ORA-00933. Can I fix this?
  9. MundeX

    Can't stop executing in SQL Window

    I can't stop executing in SQL Window. I tried tolbar button "Break" or Shift+Esc. Don't work! I often executing script with over 10000 lines (mixed DDL, packed spec and body and other). Sometimes I had brake executing right now.
  10. MundeX

    PL/SQL Beautifier : long logical statement with function

    When can expect this feature?
  11. MundeX

    PL/SQL Beautifier : long logical statement with function

    Example (after formating statement; space == '_') CREATE OR REPLACE FUNCTION test RETURN BOOLEAN IS BEGIN ____RETURN Nvl(a, _______________1) = 0 AND Nvl(a, ______________________________1) = 0 AND Nvl(b, _____________________________________________1) = 0; END; / Expected format (space ==...
  12. MundeX

    Tuen Off Substitution Variable for SQL Window

    I used SET DEFINE OFF (try both Command Window and SQL Window) and always get Variables window to define variables. Why?
Back
Top