Oracle下:现在要联机备份表空间(表空间名字为:学生名字的拼音,数据文件也是一样的名称),请写出所有操作过程和语句。

解决方案 »

  1.   

    exp username/pwd tablespaces=T1 owner=younameimp username/pwd  file=expdat.dmp  full=y
      

  2.   

    1、alter tablespace student_name begin backup;
    2、使用操作系统命令复制数据文件:copy d:\oracle\oradata\student.dbf d:\backup
    3、alter tablespace student_name end backup;
      

  3.   

    rman备份
    c:\>rman target /
    rman>backup tablespace student_name;