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

ORACLE 数据库用户备份及表备份

时间:2015-06-25 10:13:57      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

 
表备份模式
备份:exp system/pwd@127.0.0.1:1521/db owner=(user) file=E:\DB\db20150326.dmp  tables=(table);
还原:imp system/pwd@127.0.0.1:1521/db fromuser=(user) touser=user file=E:\DB\db20150326.dmp 

用户备份模式
备份:exp system/pwd@127.0.0.1:1521/db owner=(user) file=E:\DB\db20150326.dmp 
还原:imp system/pwd@127.0.0.1:1521/db fromuser=(user) touser=(user) file=E:\DB\db20150326.dmp 
 
要使用命令窗口执行语句
 
system:系统用户角色
pwd:密码
127.0.0.1:1521:ip地址及串口
db:数据库名
user:登陆数据库用户名
table:表名
 

ORACLE 数据库用户备份及表备份

标签:

原文地址:http://www.cnblogs.com/jerrywublogs/p/4599156.html

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