Oracle数据库备份操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle数据库备份操作相关的知识,希望对你有一定的参考价值。
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数据库备份操作的主要内容,如果未能解决你的问题,请参考以下文章
Oracle如何实现创建数据库备份数据库及数据导出导入的一条龙操作