本人以前安装了PL/SQL Developer 6,装的Oracle 10g的数据库,以前一直用得很好,不知道为什么突然出现这样的问题:
当输入查询语句时,比如:"select * from emp",没问题,但是当输入"select ename,",也就是说刚刚输入那个逗号时PL/SQL就死了,始终反应不过来,重新装PL/SQL,还是一样的问题,这可真是郁闷的了,有谁能够给出解决方法啊?

解决方案 »

  1.   

    重新启动数据库和监听然后再看看pl sql
    developer还有这个问题不.
      

  2.   


    动不动就重启数据库是个很糟糕的主意。你edit表的时候看看是不是正常。
      

  3.   

    jdsnhan,你说的edit表是指什么?表的结构可以修改,写一个update语句也可以,就是自动提示超级慢,我在想,是不是表名必须先出现?
      

  4.   

    用oracle的 sqlplus 看有问题没有。
      

  5.   

    uh, you can disable statistics in the preference menu, or obtain select privileges on the v$session, v$sesstat and v$statname tables basically there is a menu option in the app you can shut off or you can log in as sys and issue these statements: grant select on v$session to yourusername;
    grant select on v$sesstat to yourusername;
    grant select on v$statname to yourusername;

    "osborn" <osbornlin_at_ares.com.tw> wrote in message news:97hkd2$gr7$1_at_news.is.net.tw... 
    > help me...
    >
    > "Dynamic Performance Tables not accessible,
    > Automatic Statistics disabled for this session
    >
    > You can disable statistics in the preference menu, or obtain s
    > priviliges on the v$session, v$sesstat and v$statname tables"
    >
    > what can i do , thank you !
    >网上看到的解决方案,但是以让sys以sysdba的身份执行grant select on v$session to scott时报错:“ORA-02030:只能从固定的表/视图查询”。真是昏倒!