Recent content by Grego

  1. Grego

    Alt Tab issue using Windows 11

    Any workaround found for this issue? It's quite annoying and it wouldnt be nice spending more on the new version just because of such a basic problem.
  2. Grego

    How to save my scripts automatically after closing pl sql developer

    I just can't believe I missed this for so many years! Sorry for reviving this topic, but it might be useful for someone else.
  3. Grego

    simple bug on Beautifier

    Right, this is not correct, but like I said on my first message, we use them as substitution variables. Every word between brackets brings a whole function in that place. I understand PL/SQL Developer should not treat that since its not a pl/sql syntax, but the fact that it deletes the...
  4. Grego

    simple bug on Beautifier

    Hello! Build 1514 tried to fix this, I was so happy for a moment, but it's still not perfect! On my example, begin [test]; end; After build 1514 it beatifies to: begin [ test ]; end; Look at the spaces after the brackets! Can you fix this on next build? Its almost done! lol Thanks for your...
  5. Grego

    simple bug on Beautifier

    Hello Allround, There's a bug on Pl/sql beautifier (I'm on v8) where every word between [] has its [] characters lost, like: begin [test]; end; After beautifier becomes: begin teste; end; Since here at work we use a lot of [] on our code, that is a big problem for us, having to put all...
  6. Grego

    "ERROR at line" on simple SQL... how?

    hello i'm using sql window to make a simple query. Once an error is found when trying to execute, the program only informs the error but not the line where it is. Example to reproduce: executing select dummy+1 from dual on SqlPlus, it says... error AT LINE 1: invalid number. Pl/sql...
  7. Grego

    Query by example Bug

  8. Grego

    Query by example Bug

    Hi, i'm trying to use the 'query by example' feature, but when i use an alias on a column, it uses the alias instead of the column name. Example: the following query "select dummy column1 from dual" after querying by example, returns "select dummy alias from dual where alias = 'x'" and...
Back
Top