当前位置:Gxlcms > 数据库问题 > 数据库(表)的逻辑备份与恢复

数据库(表)的逻辑备份与恢复

时间:2021-07-01 10:21:17 帮助过:7人阅读

userid=scott/tiger@myoral tables=(emp,dept) file=d:\e1.dmp

2.导出其它方案的表
如果用户要导出其它方案的表,则需要dba 的权限或是exp_full_database 的权限,比如system
就可以导出scott 的表

E:\oracle\ora92\bin>exp userid=system/manager@myoral tables=(scott.emp) file=d:\e2.emp

特别说明:在导入和导出的时候,要到oracle 目录的bin 目录下。
3. 导出表的结构

exp userid=scott/tiger@accp tables=(emp) file=d:\e3.dmp rows=n

4. 使用直接导出方式

exp userid=scott/tiger@accp tables=(emp) file=d:\e4.dmp direct=y

这种方式比默认的常规方式速度要快,当数据量大时,可以考虑使用这样的方法。
这时需要数据库的字符集要与客户端字符集完全一致,否则会报错...

导出方案
导出方案是指使用export 工具导出一个方案或是多个方案中的所有对象(表,索引,约束...)
和数据。并存放到文件中。
1. 导出自己的方案

exp userid=scott/tiger@myorcl owner=scott file=d:\scott.dmp

2. 导出其它方案
如果用户要导出其它方案,则需要dba 的权限或是exp_full_database 的权限,比如system 用
户就可以导出任何方案

exp userid=system/manager@myorcl owner=(system,scott) file=d:\system.dmp

导出数据库
导出数据库是指利用export 导出所有数据库中的对象及数据,要求该用户具有dba 的权限或
者是exp_full_database 权限
增量备份(好处是第一次备份后,第二次备份就快很多了)

exp userid=system/manager@myorcl full=y inctype=complete file=d:\all.dmp

导入

介绍
导入就是使用工具import 将文件中的对象和数据导入到数据库中,但是导入要使用的文件
必须是export 所导出的文件。与导出相似,导入也分为导入表,导入方案,导入数据库三
种方式。
imp 常用的选项有
userid: 用于指定执行导入操作的用户名,口令,连接字符串
tables: 用于指定执行导入操作的表
formuser: 用于指定源用户
touser: 用于指定目标用户
file: 用于指定导入文件名
full=y: 用于指定执行导入整个文件
inctype: 用于指定执行导入操作的增量类型
rows: 指定是否要导入表行(数据)
ignore: 如果表存在,则只导入数据
导入表
1. 导入自己的表

imp userid=scott/tiger@myorcl tables=(emp) file=d:\xx.dmp

2. 导入表到其它用户
要求该用户具有dba 的权限,或是imp_full_database

imp userid=system/tiger@myorcl tables=(emp) file=d:\xx.dmp touser=scott

3. 导入表的结构
只导入表的结构而不导入数据

imp userid=scott/tiger@myorcl tables=(emp) file=d:\xx.dmp rows=n

4. 导入数据
如果对象(如比表)已经存在可以只导入表的数据

imp userid=scott/tiger@myorcl tables=(emp) file=d:\xx.dmp ignore=y

导入方案
导入方案是指使用import 工具将文件中的对象和数据导入到一个或是多个方案中。如果要
导入其它方案,要求该用户具有dba 的权限,或者imp_full_database
1. 导入自身的方案

imp userid=scott/tiger file=d:\xxx.dmp

2. 导入其它方案
要求该用户具有dba 的权限

imp userid=system/manager file=d:\xxx.dmp fromuser=system touser=scott

导入数据库
在默认情况下,当导入数据库时,会导入所有对象结构和数据,案例如下:

imp userid=system/manager full=y file=d:\xxx.dmp

 

数据库(表)的逻辑备份与恢复

标签:

人气教程排行