Recent content by guttormvik

  1. G

    Suggestion: Copy to clipboard in Error dialogs

    When I run some pl/sql and get an error, I'd like to be able to copy the text. Either by making it possible to mark and copy the text itself, or by having a "copy to clipboard" button
  2. G

    Add support for Copilot?

    I see you have added AI support to PL/SQL Developer, but Copilot is not in the list. Any chance of adding it? It's the only one our company allows.
  3. G

    Suggestion: Transform selected text in editor with (package) function call?

    Interesting, but tested that on one of my queries. Didn't help much: when lc_end.location_type = LOCATION_TYPE.HELIPORT then ... when lc_end.location_type = LOCATION_TYPE.HELIPORT then ... -> when lc_end.location_type = :Var10 then ... when lc_end.location_type = :Var12 then ... Each instance...
  4. G

    Suggestion: Transform selected text in editor with (package) function call?

    Use-case: In my pl/sql packages I have selects that use package constants instead of literals. When I want to test these, I copy them to a SQL window, and then I have to manually replace the package constants with the literals. I'd like to automate this search/replace somehow. Original, and...
  5. G

    Pl/Sql Developer caching current schema?

    I have a db trigger that changes current schema to X. I added a connection to pl/Sql developer, logged on with user Y, and got the expected schema X. In the connection list, the connection showed with postfix "[X]" So far so good. After logging off, the connection still showed with postfix...
  6. G

    Suggestion: Let AutoSelect understand "@", and trim comments

    You can't load a file and selectively execute statements in Command Window. I would have to copy-paste. In some cases it would be interesting to @-run the complete script in a Command Window, but there are at least two issues that makes this awkward: * You have to go into config to change...
  7. G

    Suggestion: Let AutoSelect understand "@", and trim comments

    Say I have a SQL*Plus scripts that I want to run step by step in PL/SQL Developer's SQL window: insert into table ....; @package/body/some_package.sql /* some long comment ... */ insert into table ....; First insert is fine. I can't run the @-statement itself, which is slightly annoying...
  8. G

    Window resize after changing screen is really slow

    Both screens had the "recommended" scaling, which was 125% for the laptop. Assume that was default as well. Changing my laptop to 100% solves the problem! Now I can drag between the screens, or switch between "External Only" and "Duplicate" with no apparent lag. Nice! For me this solves the...
  9. G

    Window resize after changing screen is really slow

    I work on a laptop with an external screen attached. When I switch between Duplicate and Second Screen Only, it takes 10s+ for PlSql to finish resizing itself! While this is ongoing, the elements of the window keep jumping around and redrawing. This is painful; I do this regularly when I need...
  10. G

    Bug: Difference Viewer doesn't handle UTF-8 on file-side

    I have a file open with unsaved changed. Then the file changes in the background. When I get back to pl/sql developer, it asks if I want to discard or see differences. The difference viewer shows the current file on the left-hand side, and there the content shows exactly as in the editor. The...
  11. G

    Plyxon Pricing & Ordering

    That's a shame. I doubt my employer will want to pay two licenses, and Plyxon is not yet a replacement for PL/SQL Developer. It's been fun to follow along in the beta period, but now I'll delete it and go back to clunky old PL/SQL Developer
  12. G

    Code Assistant: rows change order when I type

    I didn't even see that :grin: Physical order is great, since the PK is normally at the top, so I don't think I want to always have the list sorted. I seems weird that you sort the list when I start typing. The logical thing would be to keep whatever order the list had, and just filter it.
  13. G

    Code Assistant: rows change order when I type

    I write "[TABLE]." and get a list of all the columns, with user_id first. I write "[TABLE].u" and now user_comment is first with user_id second. I'm guessing you're using column order first, and then sort order? Also: When I've maximized the window and write at the bottom, the list of...
  14. G

    Suggestion: Let Return/Enter key "open" the object in the object browsers

    Now that we can navigate with incremental search in the object browsers, it would be great if we could also "open" with keyboard: Database connections: Connect Database Objects: Perform "default" action, like in PL/SQL Developer? Same with doubleclick btw Files: Open
Back
Top