码迷,mamicode.com
首页 > 数据库 > 详细

Oracle数据库备份操作

时间:2020-03-17 19:21:08      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:数据库   模式   注意   导入表   ima   oracl   导入   rac   scott   

1.以管理员身份登录

技术图片

 

导出表

 2.exp system/Oracle11g buffer=64000 file=D:exp_full.dmp full=y;完全导出

技术图片

 

 3.用户模式

exp scott/Oracle11g buffer=64000 file=D:scott_emp.dmp owner=scott

注意:命令末尾不能有分号,否则报错“scott为无效的用户名”。

技术图片

 

 4.表模式

exp system/Oracle11g buffer=64000 file=D:exp_scott_emp.dmp tables=(scott.emp)

技术图片

导入表

导入表与导出表命令类似,将exp改为imp。

5.完全导入

imp system/Oracle11g buffer=64000 file=D:exp_full.dmp full=y;

6.用户模式

imp scott/Oracle11g buffer=64000 file=D:scott_emp.dmp fromuser=scott touser=scott

7.表模式

imp system/Oracle11g buffer=64000 file=D:exp_scott_emp.dmp fromuser=scott touser=wangwu tables=(emp)

 

 

  

Oracle数据库备份操作

标签:数据库   模式   注意   导入表   ima   oracl   导入   rac   scott   

原文地址:https://www.cnblogs.com/qilin20/p/12498326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!