Recent content by F. van Boven

  1. F

    Mac OS X support

    Just to make it visible: There is a demand for it! At our company all developers are switching to Apple. Although some developers use SQL Developer (and some even the PHPStorm plugin), the most use a VM to run PLSQL developer on. Nothing beats PLSQL Developer, we (I) need this! :D So a +1 from me
  2. F

    Text importer behavious issues

    If you process a file with the Text importer there is some weird behavious: 1. Blocking PL/SQL. PL/SQL blocks everything. So I cannot continue working in another window. Can the be changed so not the entire application turns "white"? 2. Progress hangs. After switching to another application...
  3. F

    Feature request: Select multiple objects in the invalid object list

    I see cool stuff in the new release.... Thanx a lot :D
  4. F

    Reg: problem during debug

    Benjamin, do you run the debug on a cluster? If so: this generated errors and hanging PLSQL instances. Connect to a specific instance when debugging.
  5. F

    Feature request: Select multiple objects in the invalid object list

    Which is basicly exactly what you want ;) Although you can make a "recompile selected" option based on the multi select once it is available. p.s. @Marco: Is the list of enhancement requests available somewhere?
  6. F

    Feature request: Select multiple objects in the invalid object list

    Hello, it would be handy if you (well, I) can select multiple objects from the "Compile invalid objects" window and open them op at once. Is is also possible to set a kind of default action, so you can use the enter key (for instance) to quickly edit (instead of using the right mouse button...
  7. F

    Feature request: "Close all but this"

    Hi, say when you are working with 20 active editors, and you want to close all non-related stuff... It would be nice to have a "Close all windows except this one", so the active editor keeps active. (Right mouse button in the Window list)
  8. F

    "Close all" does not ask confirmation for all windows

    Hi, When you close PLSQL developer, it asks if you want to save pending changes. Within this message is a "Do the same for all windows" checkbox. When you select "Close all" from the menu, this option is not there. Can this functionality be added there also? Greetz, Frank
  9. F

    Feature request:: multi-select in Recall Statement

    Hi all, can the "Recall statement" window be changed so it is multi-select? Sometimes I need to recall more than 1 statement, but it's real time consuming to get them back (Recall statement -> Find -> Gat first statement -> Recall statement -> Find -> Gat seond statement). Simple solution could...
  10. F

    describe shortcut in plsql developer similar to toad

    All shortcuts and action are customizable, so this is definitely possible: Go to Tools -> Preferences and then to "Key configuration"...
  11. F

    More beautifier options

    Ah, I see what causes the "group by"... The "by" is aligned with the identifiers, like this: select FIELDNAME from TABLE group by FIELDNAME
  12. F

    "Not all records fetched" in single record view

    Hi, to get the column names of a table I often use the "Single record view" to copy all the column names. Works like a charm, except that the "Note, not all records are fetched!" warning is raised. This should not occurs because: a) I'm copying column headers, not data b) I'm in single record...
  13. F

    More beautifier options

    Hi, I'm trying (for the first time) to use the beautiful to quickformat some PL/SQL code to our company standards. There are some options missing to make it work. Can the following options be added: - Casing of aliases - List items on a new line So the next code: select o.ORDERID...
  14. F

    AutoReplace Enhancement Request

    Shouldn't the autoreplace allways be disabled with typing comments? Or maybe make it a setting...
  15. F

    Feature request: Join code assistant

    Hi, it would be nice if the code assistant would show join suggestions. So the completion of the query: select p.PRODUCTID, p.PRODUCT from PRODUCT p inner join MANUFACTURER m on m. would also give "m.MANUFACTURERID = p.MANUFACTURERID" as an option instead of just the available...
Back
Top