记事本能打开DMP文件?
俺试试。。

解决方案 »

  1.   

    记事本即使打开DMP文件.看到的并不是真正的.会有乱码出来.请问楼主你又是如何看的呢?
      

  2.   

    的确是乱码文件,但是有些单词还是可以看得出来的,我把所有的 tablespace "system" 都换掉了
      

  3.   

    把你的dmp文件改回来(有备份更好),重新建一个表空间,然后导入dmp
      

  4.   

    先导入dmp文件.
    然后导出为sql脚本.
    再修改表空间项
      

  5.   

    [Q]怎么样移动表或表分区
    [A]移动表的语法
    Alter table tablename move
    [Tablespace new_name
    Storage(initial 50M next 50M 
    pctincrease 0 pctfree 10 pctused 50 initrans 2) nologging]
      

  6.   

    [Q]怎么样移动表或表分区
    [A]移动表的语法
    Alter table tablename move
    [Tablespace new_name
    Storage(initial 50M next 50M 
    pctincrease 0 pctfree 10 pctused 50 initrans 2) nologging]
    移动分区的语法
    alter table tablename move (partition partname)
    [update global indexes]
    之后之后必须重建索引
    Alter index indexname rebuild
    如果表有Lob段,那么正常的Alter不能移动Lob段到别的表空间,而仅仅是移动了表段,可以采用如下的方法移动Lob段
    alter table tablename move 
    lob(lobsegname) store as (tablespace newts);