Recent content by deniskeen

  1. D

    "Compare User Objects" enhancement request

    Still looking forward to see this feature implemented :) Respectfully, Denis
  2. D

    regular expressions

    It seems than the replacement text currently does not support regular expressions. Am I right? Is on the list of enhancement requests? Also, I've searched through the help and haven't found the regexp syntax descrition :( What's the syntax used in PL/SQL Developer? Denis
  3. D

    Constants in a package

    In SQL/Developer 5.x it was possible to expand/collapse the list of constat declarations in a package (in program window) Now this feature is absent :( It's very inconvenient if there's a lot of constat declarations in a package. Denis
  4. D

    wrapped code

    Hi, It's impossible to save to disk a wrapped package's code in PL/SQLDev 6.0 Sometimes it's necessary to that. For instance, when we recieve an update from the developers of one of our 3rd party tools we must save the previous package code (wrapped), apply the update and, if it doesn't work...
  5. D

    a small bug in the SQL window

    Hi! In the code below the popup menu for table2 doesn't contain items like 'Describe', 'Edit' etc. begin for r in (select * from table1) loop insert into table2 values ('xxx'); end loop; end; If I comment the loop the items get visible again begin -- for r in (select * from table1)...
  6. D

    chr(0)

    Hi! If a varchar2 column in a table contains chr(0) symbol then all the data starting from the symbol's position till the end of the column's value is invisible when selecting in SQL window. (Oracle 9.2.0.4; PL/SQL Developer 6.0.0.816) PL/SQL Developer's SQL window: create table t (s...
  7. D

    uppercase

    Hi! Say we've got in a SQL window: create view v_Uu as select * from dual; So the "Save as .." dialog converts the view's name to uppercase (V_UU). It would by much better to preserve the case Denis
Back
Top