Recent content by frido

  1. F

    syntax highlighting and q-quote operator

    Hi, found a bug in Syntax Highlighting (11.0.2.1766): e.g. developer does not recognize end of quote and rest of package is highlighted as comment: v := q'[ quote'test' '{}' ]'; I am still marked as comment adding a blank after close bracket, and highlighting works as expected v := q'[...
  2. F

    setting main connection and pinning sessions

    Problem 2 was sitting in front of the computer .... I thought, that all connections from all different logins will be redirected to one target database. But "only" connections from one login will be redirected to a different one --> working
  3. F

    setting main connection and pinning sessions

    Hi, I am currently testing version 10.0.3.1701 I am using lots of different connections, so focus on connections. Nice extension by the way (-: didn't give version 9 a try, so lots of new stuff here Problem 1 When I double click on a connection in window connections, the main connection is...
  4. F

    user filter and browser filter are not working together (bug or feature?)

    Hi, at first I really appreciate the new user filter, but I find it really difficult to use that filter especially in combination with the browser filter. Example: First I choose a browser filter limiting to objects of UserA Afterwards I like to see objects from UserB and therefore I use the...
  5. F

    function keys / home / end are not working

    solved, I resetted key configuration in preferences to default and it is working now ... the configurations were completely empty after installation
  6. F

    function keys / home / end are not working

    Hi, I just installed developer 8.02.1505 and the shortcuts aren't working any longer. When I press F8 nothing happens, Home and End Key does not have any effect. Are there some new settings in developer8 to enable / disable that ? In developer7 I have no problems (parallel installation)
  7. F

    generate SQL from Diagram Window

    Hi all, is there a possibility to generate SQL Statements based on a diagram ? (including the joins between the tables ) Regards Chris
  8. F

    V7: "File open"-dialog loses Layout-Settings

    I use 7.0.2.1076, but I'm not able to find the preference. Where can I find it ? Thanks Chris
  9. F

    Save preferences running multiple instances

    sorry, I'm little late. I use Version 7.02.1076 Thanks Regards Chris
  10. F

    Save preferences running multiple instances

    Hi, Lets start with an example. I'm running three instances of PLSQL Developer. I change some preferences in Developer 1, for example I add a Browser Filter. Then I close Developer 1, afterwards the other instances. Seems that every instance saves the current preferences when closing, even...
  11. F

    constants in browser of program window

    Hi all, is there a possibility, not to show constants in the browser of the program window ? or to show constants after procedures or functions ? We use lots of constants, and I want to see all procedures and functions inside a package on the top. (Version 6.06.947) Thanks Chris
  12. F

    Long Value during debugging

    the best resolution I found is splitting up the variable only for debugging v_test1 := substr(v_statement, 1 , 950); v_test2 := substr(v_statement, 951, 950); v_test3 := substr(v_statement,1990, 950); I'm not satisfied with this, but I don't know a better one Chris
  13. F

    Enhancement Request: Indicating open transaction in window list

    I frequently work with many windows. At the moment the lights indicates, if a query or a test skript is running or not. Is it possible to enlarge this to an additional color (f.e. yellow) indicating an open transaction ? Such transaction always locks the tables, preventing other sessions from...
  14. F

    Enhancement Request: debugging large string variables

    I develop packages generating SQL Statements. Therfore I use varchar2(32000) variables. When debugging, it is only possible to view the variable until it reaches a length of about 1000 Characters. Then the varchar switches to a long variable, making it impossible to view the variable during the...
  15. F

    Pauses in SQL Window

    Hi, On Windows XP PL SQL Developer shows the results of a new query with delays (0-10s). Seems like there is a problem displaying the results. After "Query Data" the SQL Window is shown, the first column in the first row is shown, also the status in the bottom (f.e. 25 rows selected in 0,2s)...
Back
Top