按表导出 t_account .dmp

oracle导入与导出
oracle导入与导出
在cmd 命令行中执行exp system/password owner=waterUser1(表空间名) file=t_account .dmp(表名)
oracle导入与导出
oracle导入与导出

按用户导出

exp system/password owner=wateruser file=wateruser.dmp;

按用户导入

imp system/password file=wateruser dmp fromuser ;

按表导出

exp wateruser/shun file=a.dmp tables=t_account,a_area;

按表导入

imp wateruser/shun file=a.dmp tables=t_account,a_area;


相关文章:

  • 2021-12-30
  • 2022-01-09
  • 2022-12-23
  • 2022-01-05
猜你喜欢
  • 2021-06-23
  • 2021-07-03
  • 2021-10-16
  • 2021-08-16
  • 2021-07-31
  • 2022-02-21
相关资源
相似解决方案