共计 1072 个字符,预计需要花费 3 分钟才能阅读完成。
a. 用户名 system 密码 linuxman 导出到 D:/linuxidc.dmp 中
exp system/linuxman@SID file=d:/linuxidc.dmp full=y
b. 将数据库中 system 用户与 sys 用户的表导出
exp system/linuxman@SID file=d:/linuxidc.dmp owner=(system,sys)
c. 将数据库中的表 inner_notify、notify_staff_relat 导出
exp aichannel/aichannel@SID file= d:/data/newsmgnt.dmp tables=(inner_notify,notify_staff_relat)
d. 将数据库中的表 table1 中的字段 filed1 以 ”00″ 打头的数据导出
exp system/linuxman@SID file=d:/linuxidc.dmp tables=(table1) query=/” where filed1 like ‘00%’/”
对于压缩,既用 winzip 把 dmp 文件可以很好的压缩, 也可以在上面命令后面 加上 compress=y 来实现。
导出 DMP 文件适用于,大型数据库完整迁移,迁移前后的数据库字符集要求比较严格,对 CLOB 字段支持不太友好。
对于小数据的导出其实用 PLSQL 能做的更好,更快,导出的 SQL 也很直观。
对于本机安装了 Oracle 客户端,可以直接将 DMP 文件导出到本地,如果是没有安装,导出的文件是在 linux 服务器上面。
需要用远程工具【WINSCp,PINTY…..】连接下载下来。
e. 将 D:/linuxidc.dmp 中的数据导入 TEST 数据库中。
imp system/linuxman@SID file=d:/linuxidc.dmp
imp aichannel/aichannel@HUST full=y file=file= d:/data/newsmgnt.dmp ignore=y
上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入,后面添加 ignore=y。
f. 将 d:/linuxidc.dmp 中的表 table1 导入
imp system/linuxman@SID file=d:/linuxidc.dmp tables=(table1)
更多 Oracle 相关信息见 Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-08/134516.htm