oracle 导出表、方案、数据库和他们的导入

表的备份:

自己的表:
导出一个表:F:\app\ZhangShaoWen\product\11.2.0\dbhome_1\BIN>exp userid=scott/Oracle1@orcl tables=(emp) file=d:\emp.dmp

导出多张表:
F:\app\ZhangShaoWen\product\11.2.0\dbhome_1\BIN>exp userid=scott/Oracle1@orcl tables=(emp,dept) file=d:\emp.dmp

导出其他用户的表:需要dba权限或是exp_full_datebase的权限,比如system就可以导出scott的表。
F:\app\ZhangShaoWen\product\11.2.0\dbhome_1\BIN>exp userid=system/Oracle1@orcl tables=(scott.emp) file=d:\emp.dmp

导出表的结构:
exp userid=scott/Oracle1@orcl tables=(emp) file=d:\e1.emp rows=n

使用直接导出方式:
exp userid=scott/Oracle1@orcl tables=(emp) file=d:\e1.dmp direct=y
这种方式导出较快。这时需要数据库的字符集要与客户端字符集完全一致,否则出错。

导出方案:
导出自己的方案:exp scott/Oracle1@orcl owner=scott file=d:\scott.dmp
导出其它方案:exp system/Oracle1@orcl owner=(scott) file=d:\scott.dmp

导出数据库:
导出数据库是指利用export导出所有数据库中的对象及数据,要求该用户具有dba的权限或是exp_full_database权限 exp userid=system/Oracle1@orcl full=y inctype=complete file=f:\aaa.dmp

 

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

导入表:imp userid=scott/Oracle1@orcl tables=(emp) file=f:\emp.dmp
导入自己表 imp userid=scott/Oracle1@orcl tables=(emp) file=f:\emp.dmp
导入表到其它用户:imp userid=system/Oracle1@orcl tables=(emp) file=f:\emp.dmp touser=scott
导入表的结构:只导入表的结构而不导入数据imp userid=scott/Oracle1@orcl tables=(emp) file=f:\emp.dmp rows=n
导入数据:imp userid=scott/Oracle1@orcl tables=(emp) file=f:\emp.dmp ignore=y

导入方案:将文件中的对象和数据导入到一个或是多个方案中。
导入自身的方案:imp userid=scott/Oracle1 file=d:\emp.dmp
导入其它方案:imp userid=scott/Oracle1 file=d:\emp.dmp fromuser=system touser=scott

导入数据库:在默认情况下,当导入数据库时,会导入所有对象结构和数据
imp userid=system/Oracle1 full=y file=f:\xxx.dmp


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

蟹道人

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>