热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Imp导入与exp导出

按方案导入(须加log文件):C:UsersAdministratorexpscottscott@orcl11gfiled:temp1.dmplogd:templog.log导出注意事项:导出的是当前用户的的数据,当前用户如果有DBA的权限,则导出所有数据!所以fully要确定应用环境C:UsersAdministr

按方案导入(须加log文件): C:\Users\Administratorexp scott/scott@orcl11g file='d:/temp/1.dmp' log='d:/temp/log.log' 导出注意事项:导出的是当前用户的的数据,当前用户如果有DBA的权限,则导出所有数据!所以 full=y要确定应用环境 C:\Users\Administr

按方案导入(须加log文件):
C:\Users\Administrator>exp scott/scott@orcl11g file='d:/temp/1.dmp' log='d:/temp/log.log'

导出注意事项:导出的是当前用户的的数据,当前用户如果有DBA的权限,则导出所有数据!所以 full=y要确定应用环境
C:\Users\Administrator>exp scott/scott@orcl11g file='d:/temp/1.dmp' log='d:/temp/log.log' full=y

导出特定表
C:\Users\Administrator>exp scott/scott@orcl11g file='d:/temp/1.dmp' log='d:/temp/log.log' tables=scott.dept

将数据库中system用户与sys用户的表导出
exp scott/scott@orcl11g file=d:\daochu.dmp owner=(system,sys)

将数据库中的表emp中的字段empno以"79"打头的数据导出
exp scott/scott@orcl11g file=d:\scott.dmp tables=(emp) query=\" where empno like '79%'\"

不同名之间的数据导入:(按方案导入导出)
C:\Users\Administrator>imp scott2/scott2@orcl11g file='d:/temp/1.dmp' log='d:/temp./1.log' fromuser=scott touser=scott2
同名之间数据导入

C:\Users\Administrator>imp scott2/scott2@orcl11g file='d:/temp/1.dmp' log='d:/temp./1.log'

imp hkb/hkb@xe file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbimp.log full=y


推荐阅读
author-avatar
南航爱心社
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有