oracle导入导出表及表结构

sqlplus 进入数据库中
导出
直接在命令行下写命令
1.导出自己的表  
exp userid=scott/tiger@myoral tables=(emp,dept) file=/opt/e1.dmp
 
2.导出其它方案的表 如果用户要导出其它方案的表,则需要dba的权限或是exp_full_database的权限,比如system就可以导出scott的表  
exp userid=system/manager@myoral tables=(scott.emp) file=d:\e2.emp 
3. 导出表的结构  
exp userid=scott/tiger@accp tables=(emp) file=/opt/e3.dmp rows=n 
4. 使用直接导出方式 
exp userid=scott/tiger@accp tables=(emp) file=/opt/e4.dmp direct=y 
这种方式比默认的常规方式速度要快,当数据量大时,可以考虑使用这样的方法。 这时需要数据库的字符集要与客户端字符集完全一致,否则会报错
导出方案 导出方案是指使用export工具导出一个方案或是多个方案中的所有对象(表,索引,约束...)和数据。并存放到文件中
1. 导出自己的方案 
exp userid=scott/tiger@myorcl owner=scott file=/opt/scott.dmp 
2. 导出其它方案 如果用户要导出其它方案,则需要dba的权限或是exp_full_database的权限,比如system用户可以导出任何方案 
exp userid=system/manager@myorcl owner=(system,scott) file=/opt/system.dmp 
导出数据库 
导出数据库是指利用export导出所有数据库中的对象及数据,要求该用户具有dba的权限或者是exp_full_database权限 增量备份(好处是第一次备份后,第二次备份就快很多了) 
exp userid=system/manager@myorcl full=y inctype=complete file=/opt/all.dmp
导入 
1. 导入自己的表 
imp userid=scott/tiger@myorcl tables=(emp) file=/opt/xx.dmp 
2. 导入表到其它用户 要求该用户具有dba的权限
imp_full_database imp userid=system/tiger@myorcl tables=(emp) file=/opt/xx.dmp touser=scott
3. 导入表的结构,只导入表的结构而不导入数据 
imp userid=scott/tiger@myorcl tables=(emp) file=/opt/xx.dmp rows=n
4. 导入数据 如果对象(如比表)已经存在可以只导入表的数据
imp userid=scott/tiger@myorcl tables=(emp) file=/opt/xx.dmp ignore=y
导入方案 导入方案是指使用import工具将文件中的对象和数据导入到一个或是多个方案中。如果要导入其它方案,要求该用户具有dba的权限,或者imp_full_database
1. 导入自身的方案
imp userid=scott/tiger file=/opt/xxx.dmp 
2. 导入其它方案 要求该用户具有dba的权限 
imp userid=system/manager file=/opt/xxx.dmp fromuser=system touser=scott
导入数据库 
在默认情况下,当导入数据库时,会导入所有对象结构和数据,案例如下: 
imp userid=system/manager full=y file=/opt/xxx.dmp

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/22569416/viewspace-1966272/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/22569416/viewspace-1966272/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值