search this error message in www.orafaq.com

解决方案 »

  1.   

    segment(number, number)没有了存储参数
    如果还能够select 的话
    重新创建这个表吧
    create table temp_tb as select * from tbname;
    drop tbname;
    rename temp_tb to tbname;
      

  2.   

    不能 SELECT 
    这个表的数据可以不要,但必须建立一个相同名称的表,可以吗?
      

  3.   

    select cname,coltype,width  from col where tname='TBNAME';//注意大写
    记录下表结构
    重新手工创建吧
      

  4.   

    drop table 时,他出什么错?
      

  5.   

    有没有试过把这张表rename一下,然后再重建一张同名的表!
    desc table name;记录下表结构;
    rename table ×× to ××;
    create table如此作试试!
      

  6.   

    对呀,可是把这个表的结构记下。在sqlplus下:desc,或者在toad里的script里拷贝。
    然后把表drop。
    在重新建立这个表。
    以前表坏了,我就是这么搞的