Recent content by boaglio

  1. boaglio

    crazy error - PL/SQL Dev 10.0.5.1710

    Since in SQL*Plus is working fine, it proves that this issue is _not_ related to code error. It should be something related to processor arch, since is an 64 bits error only.
  2. boaglio

    crazy error - PL/SQL Dev 10.0.5.1710

    hello, What should I do, wait for version 11 to fix it ?
  3. boaglio

    crazy error - PL/SQL Dev 10.0.5.1710

    The first log it was "Native" with client "Oracle 11i". I've created another one, with "Interpreted" and client "Oracle 10g": http://pastebin.com/BEvmdiEU All four combinations got the same result: "Native" + "Oracle 11i". "Native" + "Oracle 10g". "Interpreted" + "Oracle 10g" "Interpreted" +...
  4. boaglio

    crazy error - PL/SQL Dev 10.0.5.1710

    Ok Marco, take a look please: http://pastebin.com/V1sdnBEt
  5. boaglio

    crazy error - PL/SQL Dev 10.0.5.1710

    I have tried both options... still same error =( We were using Oracle 10.2 Driver and today I tried with 11.2, still same behavior. The line 63 mentioned above is just a single variable declaration: v_exists varchar2(1) := 'Y'; Maybe this is an 64 bits issue... but is there any...
  6. boaglio

    crazy error - PL/SQL Dev 10.0.5.1710

    Hi, We have been facing a strange error which a column name changes and if you try to compile inside Program Window, it does not show the yellow bar with the error line... just a very small text Compiled with errors =( Running inside command window: SQL> alter package pac001 compile...
  7. boaglio

    SQL Window ignoring errors

    Hi, We have a strange problem with SQL Window. If we try to run an incomplete statement, like this one: create or replace package this_is_a_test as begin procedure another_test; Since the "end" is missing, it should inform an error, but what actually happen is showing no error. If I...
  8. boaglio

    PL/SQL Beautifier problems - version 10.0.0.5.1710

    Hi, Any news on this subject ? I would appreciate that =)
  9. boaglio

    Poll about fix of Performance Problem

    Hilarion is right about the poll audience. 15 votes so far is probably less than 0.01% of PL/SQL Dev users =)
  10. boaglio

    PL/SQL Beautifier problems - version 10.0.0.5.1710

    Hi, We are trying to make PL/SQL Beautifier "the" default standard format option for our thousands of pl units, but we have found some problems (maybe bugs) and I hope someone could give us a workaround :) Problem 1: before: v_test1 date; v_test2 exception; v_test3 number...
  11. boaglio

    best way to reproduce user preferences

    Hello, He have just bought 100 user license package for this amazing tool =) We've created a rules file to our standards, and we have a couple of preferences to set to all developers , such as enable all warnings, use tab with size 8, and so forth. However, we need to replicate it and we are...
  12. boaglio

    save actions

    Hi, Is it possible to configure save actions behaviour like Eclipse ? - example 1: If you have this code: "end; " Right after clicking "Save" you will get no spaces after semicolon: "end;" - example 2: If you have this code: begin loop a:=a-1; exit when a=0; end loop; Right after...
  13. boaglio

    tab behaviour like SQLTools

    Thanks Marco !
  14. boaglio

    tab behaviour like SQLTools

    Hi, Is it possible to configure tab behaviour like SQLTools? 1. If you press TAB, it jumps 8 spaces and replace source text with tab 2. If you press BackSpace, go back 8 spaces (not just one).
Back
Top