欢迎光临郝学武的blog。

oracle数据备份等常用操作

Posted on 2008-12-09 00:40 陕西BOY 阅读(99) 评论(0)  编辑  收藏
oracle知识
备份数据
1、获取帮助:
    exp help=y
2. 导出一个完整数据库
     exp user/pwd@instance file=path full=y
    示例:exp system/system@xc file = c:/hehe fill =y
3 、导出一个或一组指定用户所属的全部表、索引和其他对象
    exp system/manager file=seapark log=seapark owner=seapark exp system/manager file=seapark log=seapark owner=(seapark,amy,amyc,harold)
    示例:exp system/system@xc file=c:/hehe owner=uep
4、导出一个或多个指定表
    exp system/manager file=tank log=tank tables=(seapark.tank,amy.artist)
    示例:exp system/system@xc file=c:/heh tables=(ueppm.ne_table)


恢复数据

1. 获取帮助

 imp help=y

2. 导入一个完整数据库

 imp system/manager file=bible_db log=dible_db full=y ignore=y

3. 导入一个或一组指定用户所属的全部表、索引和其他对象

 imp system/manager file=seapark log=seapark fromuser=seapark 
imp
system/manager file=seapark log=seapark fromuser=(seapark,amy,amyc,harold)

4. 将一个用户所属的数据导入另一个用户

 imp system/manager file=tank log=tank fromuser=seapark touser=seapark_copy
 imp system/manager file=tank log=tank fromuser=(seapark,amy) touser=(seapark1, amy1)

5. 导入一个表

 imp system/manager file=tank log=tank fromuser=seapark TABLES=(a,b)

只有注册用户登录后才能发表评论。


网站导航:
 

posts - 17, comments - 65, trackbacks - 0, articles - 28

Copyright © 陕西BOY