Recent content by zitot

  1. Z

    [Bug] Comment Directive --Tab=Name uses first seen Tab= if multiple exist

    Thank you for the fix Marco ^^ Found an edge case. comment directives are allowed after a SQL query, or more technically, the query never ends until it hits a semicolon, so any comment directive can still be processed up to that point. I think this is fine. (To me the real issue was that the...
  2. Z

    [super minor bug] triple click select the last line of a file, hit tab key on keyboard

    I almost didn't report it but i figure there's that 0.001% chance this could be important or cause someone to rage someday. Description of bug: You have some SQL code in a file, and you realize the last line of your code is not indented. Coincidentally, the last line of your code is also the...
  3. Z

    SOLVED cascading variable 1 to a second variable?

    Hi, is it possible to do something like a cascading variable where variable 1 filters down a select list for variable 2? e.g. setting an activity year, or a specific department EDIT: I reread the manual and found that on page 100 it indeed stated you can do items in a list based on another...
  4. Z

    Open a Workset in New Instance

    Hi, Is there a configurable setting to open a workspace in a new instance? That is, if I have one instance open, and i click open a workset, i'd like to open it in a new instance rather than what happens now, which is closing all the windows in the current instance and opening the workset -...
  5. Z

    Enhancement request - code assistant for common table expression alias

    e.g. with tbl1 as (select stvterm_code from stvterm), tbl2 as (select T.stv.. from tbl1 T) or with tbl1 as (select stvterm_code from stvterm) select T.stv.. from tbl1 T It would be nice if autocomplete could work on T. here when I press F6.
  6. Z

    FEATURE REQUEST: set CSV "Sep=^" when exporting query result

    Hi, I'm back again with a feature request. This time: allow user to set an optional separator value in a CSV file when exporting from a SQL query. I don't know about other operating systems and programs, but excel on Windows recognizes "Sep=^" (where ^ is a delimiter character) so that you skip...
  7. Z

    [SOLVED] (Feature already exists): user-defined variables in comment directive CSV/Excel

    Oh, I went and reread that page and saw %&var% in the manual to expand user variables. For regular environment variables, following %var%, I also have that working now, not sure why it wasn't before. Though I can't get it working with user level env var I don't really need that since those two...
  8. Z

    [SOLVED] (Feature already exists): user-defined variables in comment directive CSV/Excel

    EDIT: SOLVED, see 2nd and 3rd posts. Hello, I tried putting this line and hitting the Export to CSV button above the result set but the resulting filename just had &var in the name without substituting -- CSV=C:\excel\Person &var Aggregated Data from v1.4.0-alpha.1-20250812.csv -> Person &var...
  9. Z

    [Bug] Comment Directive --Tab=Name uses first seen Tab= if multiple exist

    -- Tab=Window 1 --select 1 from dual; -- Tab=Window 2 select 2 from dual; -- Tab=Window 3 select 3 from dual; Expected Result: You should have two tabs, Window 2 and Window 3 Actual Result: Window 1, Window 3 It's a little annoying. As far as affects, here is an example where I am...
  10. Z

    Update docs? hidden="yes" does not work if var has name before paramse.g. &foo

    Edit: I see now that the var needs to not have a name (well, it needs the name parameter, but it needs to be &
  11. Z

    PLSQL -> put into Result Set tabs in SQL window?

    Let me define the scope. I have some SQL query of a bunch of CTEs. To debug more easily I'd like to run select * from CTE1, select * from CTE2, ... in the same SQL window. Because they're CTEs and I don't have ability to make table, I cannot do multiple query from same CTE as the final select...
  12. Z

    Disable sound on failed wrap search

    Hi, could you add option to disable the windows sound that plays from windows when a search fails to find, wrap is enabled, and DSA search is set to Yes [optional, it just has to not be set to no] This sound: Steps to hear annoying sound: Open Find & Replace window on SQL Window Check Wrap...
  13. Z

    Ctrl-Backspace bugs with multiple carets

    Posted this before as a reply to a diff thread but I don't know if you saw it so new topic. I can reproduce case 1 and 2 but not 3. Bug 1: Ctrl-Backspace only deletes word on the same line as the visible caret Steps to reproduce: 1. Type in foo on line 1, bar on line 2 2. Select the last...
  14. Z

    Drag Tab between two instances

    Is there a way to drag tabs between Instances of PLSQL Developer? Instances as in those created using the New Instance button, see attachment
  15. Z

    Enhancement : Query By Example at multiple tabs at the same time

    Thanks. It would also be great to be able to apply Filter columns... on multiple tables at same time..
Back
Top