我用这个命令可是不成功rename ProducttInventoryRatio to .ProductInventoryRatio

解决方案 »

  1.   

    SQL> rename t_pay to .t_pay;
    rename t_pay to .t_pay
                    *
    ERROR 位于第 1 行:
    ORA-00903: 表名无效SQL> rename t_pay to t_pay1;表已重命名。
      

  2.   

    rename OldTableName to NewTableName
      

  3.   

    重命名:
    1,表名 rename xx to yy --注意表名规范
    2,字段 alter table kk rename column ss to k; --9i
      

  4.   

    rename ProducttInventoryRatio to ProductInventoryRatio
      

  5.   

    表名还可以 alter table tablename rename to tablename2;