所有原来都编译的FORM编译时都提示错误!急需请专家指教。
ORA-00600 internal error code, arguments: [string], [string], [string], [string], [string], [string], [string], [string] 

解决方案 »

  1.   

    ? function中是string?不应该呀. 把你的具体的trc帖出来看看?
    不过你升级后的补丁包? 驱动都是否匹配?
      

  2.   

    declare
    v_polno varchar2(16);
     Cursor c_polno IS
         select polno from pol_main
            where polno=:txt_polno;
    begin
       open c_polno;
       fetch c_polno into v_polno;
       if c_polno%notfound then
           message('NO Polno');
       else
          next_item;
       end if;
      close c_polno;
    end;FORM中以上这段很简单的程序,编译时就提示ora-00600:internal error code,arguments:[17069],[29827348],[],[],[],[],[],[]
    我只是开发的,DBA是其他人,数据库已经升级完了。也没辙。楼上是说服务器上打补丁,还是我本身使用的电脑上?
      

  3.   

    很难说,你最好是把生成的trc文件中的stack trace 帖出来.