Recent content by r2363c

  1. R

    Import tables via pde file - invalid number

    Hello, does there's some improvement on that kind of issue in the next release ? I've met it today, and it append often when source and destination are not the same server. It's sad, because I like a lot the pl/sql dev import/export feature. thanks, Laurent
  2. R

    Features suggestion

    Hello, I have few suggestions bellow. Include Statistics : I think it would be great, to add on table right click a statistics menu wich can allow to execute dbms_stats.gather_table_stats And on schema node DBMS_STATS.GATHER_schema_STATS It can eventually open a dialog box with available...
  3. R

    Memory leak in Session on continues connect and disconnect

    Hello, I've fixed the issue. It's comming from Oracle OCI layer 9.2.0.1 To fix this problem you have to apply patchset. I have applied the 9.2.0.7 and now there's no more memory leak. Laurent
  4. R

    Memory leak in Session on continues connect and disconnect

    Hello Marco, I've meet the same Issue with V4.0.7.1 Also on OCI release 9.2.0.1 My test program is very simple : OracleSession1->Connected=true; OracleSession1->Connected=false; in a 100ms timer Just for information because I doesn't need it. If I set ThreadSafe to true, it's worst...
  5. R

    PB with factoring subquery

    I've just tested on 9i, that's work too. But on 8.0.5 client, it doesnt work. on 8.1.6 it doesn't work too. no error message, just no row !!! But on sql*plus 8.1.6 it give SP2-0642: SQL*Plus internal error state 2091, context 0:0:0 Unsafe to proceed it's really stange !!!
  6. R

    PB with factoring subquery

    this query work in SQL*plus with C as (select * from emp) select * from C but not in PL/sql dev but this one (very similar) yes select * from ( with C as (select * from emp) select * from C ) I think it's a bug on factoring subquery handling. I've just downloaded the last realease of pl/sql...
Back
Top