Recent content by sky_lt

  1. S

    delay selecting CLOB and BLOB values

    Yes the databases are different. Oracle enterprise 11.2.0.4.0 and Oracle enterprise 11.2.0.1.0 For me it seems like PL/SQL developer is lagging on displaying results with clob/blob datatypes, as i have never had such issues with earlier PL/SQL developer releases. BTW the other tool "oracle sql...
  2. S

    delay selecting CLOB and BLOB values

    Hi, I can not figure out why my pl/sql developer performs different on my several computers. PL/SQL developer version on both computers is 10.0.5.1710 But on one computer it runs queries with clobs quickly while on the other it lags: First computer(fast): * Oracle enterprice 11.2.0.1.0 *...
  3. S

    PL/SQL Developer not stable release 9.0.6.1661

    Could not get .exe on my organization policy. I will try the new version 9.0.6.1665 as it is official an included in update today. Thanks Marco
  4. S

    PL/SQL Developer not stable release 9.0.6.1661

    Hi, I have recently upgraded PL/SQL developer to version 9.0.6.1661 It started to terminate and crash unexpectedly. If it saves any crash information which can be usefull for support i can get it from my disk and send it to support, just tell me what i should send. Thanks, Sky_lt
  5. S

    Bug/feature: export user objects, missing 'set define off' command and FORCE keyword

    Yes it is really annonying not to have FORCE in views DDL's - i have to use another tool for exporting views. PL/SQL Developer Version 9.0.4.1644
  6. S

    Errors in in DDL of tables

    Hi, There are some promblems in PL/SQL developer DDL's PL/SQL Developer Version 9.0.4.1644 --MY case: create table test_metadata (id number, name varchar2(20)); create index test_id_idx on test_metadata(id); alter table test_metadata add constraint pk_meta_id primary key (id) using index...
  7. S

    Missed syntax of create partitioned table table using Oracle 11.2

    The first issue: PL/SQL developer misses new partition option INTERVAL (NUMTOYMINTERVAL(1,'MONTH'))
  8. S

    Missed syntax of create partitioned table table using Oracle 11.2

    i am using PL/SQL developer Version 9.0.4.1644 and facing this issue
  9. S

    improvement/enchantment request

    hi, Will it ever be possible to drag column name with mouse from grid to sql window? PL/SQL developer missed this feature for so long now. Sky_lt
  10. S

    Missed syntax of create partitioned table table using Oracle 11.2

    Hi, My statement: CREATE TABLE "XXX" ("X" NUMBER(20,0), "DATE_" DATE) PARTITION BY RANGE ("DATE_") INTERVAL (NUMTOYMINTERVAL(1,'MONTH')) (PARTITION "PART_MAIN" VALUES LESS THAN (TO_DATE(' 1900-01-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))) ENABLE ROW...
  11. S

    Local indexes

    Hi, The is no keyword "LOCAL" for local indexes when viewing index DDL through partitioned table "View SQL" button. When clicking through DBMS_Metadate=>DDL everything is OK. Local index extracts with "LOCAL" keyword. My version 8.0.4.1514
  12. S

    Context menu problem in SQL window

    Hi, Sometimes context menu changes on the same object in sql window, is it normal?:
Back
Top