gwuj 发表于 2018-9-24 07:39:41

ORACLE-Linux

备份导入与导出  1、导出
  exp test/test@test tables=(test1,test2) file=xiaohu.dmp log=xiaohu.log
  2、导入恢复
  imp test/test@test tables=(test1) ignore=y file=xiaohu.dmp恢复时使用
  3、备份表
  create table test2 as select * from test1;
  4、删除表
  truncate table test1;

页: [1]
查看完整版本: ORACLE-Linux