我现在有三个用户,三个表空间,我象按表空间备份,谁能说说怎么备份?热备

解决方案 »

  1.   

    RMAN

    backup tablesapce
    命令
      

  2.   

    alter database tablespace user offline
      

  3.   

    exp userid=username/password file='d:\aaa.dmp' tablespace=tablespace_name;10g中 expdp 也可以. 
      

  4.   

    热备:
    1.alter tablespace xxx begin backup;
    2.复制该表空间文件,并粘贴到备份目的地;
    3.alter tablespace xxx end backup;
      

  5.   

    RMAN RMAN>backup tablespace 'TABLESPACE_NAME' include current controlfile;