Recent content by davemans

  1. D

    Wish List: Projects

    If you right-click in a SQL window and 'Add to Project' you get a blank line in the list of items. I find this useful for seperating items into related groups. It would be good if you were prompted to save any changes in the Project window when you quit PL/SQL Dev and have forgotten to click...
  2. D

    Bug Report Export Query Results to csv

    Doesn't add leading comma(s) if the first column(s) are null. Null fields in the middle of a row are fine. Export with Smart Quotes was checked but unchecking it doesn't seem to disable it i.e. still only has fields containing commas enclosed in quotes.
  3. D

    Query by example text in version 7

    As a workaround, you could do Ctrl-E and get it back from the Recall buffer.
  4. D

    Beautifier question

    In your code snippet You have an opening quote after the WHERE but no matching closing quote. The beautifier will not parse correctly if their are syntax errors in the code.
  5. D

    Beautifier question

    Could it be because the 'AND' is inside brackets? What happens if you remove them?
  6. D

    Setting up browser folders

    I think it is because there is no icon for a dimension. You can get them to display as tables by putting the following in the where clause for your folder :- owner = 'Dummy' union all select owner, 'TABLE', object_name, status from all_objects where owner = USER and object_type = 'DIMENSION'
  7. D

    Custom Browser Folders

    This thread might help : http://www.allroundautomations.com/ubb/ultimatebb.php?ubb=get_topic;f=3;t=002158
  8. D

    Custom Browser Folders

    You can fool the browser to some extent by putting something like this in the WHERE clause :- Owner = 'Dummy' UNION SELECT field1, field2, field3, field4 FROM some_table field1 is interpreted as the user and is not displayed if the same as the connected user else it prefixes field3 which is...
Back
Top