- 数据导出
①将数据库orcl完全导出
exp lims/[email protected] file=d:lims_20150104.dmp full=y
②将数据库中lims用户导出
exp lims/[email protected] file=d:daochu.dmp owner=(lims)
③将数据库中的表导出
exp lims/[email protected] file=d:daochu.dmp tables=(test,result)
④将数据库中查询出的结果导出
exp lims/[email protected] file=d:daochu.dmp tables=(sample) query="where description like ‘%a%‘"
上面是常用的导出,对于压缩,既用winzip把dmp文件可以很好的压缩。
也可以在上面命令后面 加上 compress=y 来实现。 - 数据导出
①将d:daochu.dmp 的数据导入数据库
imp lims/[email protected] file=d:daochu.dmp
imp lims/[email protected] file=d:daochu.dmp full=y ignore=y
上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入。
在后面加上 ignore=y 就可以了。②将d:daochu.dmp的表table1导入
imp lims/[email protected] file=d:daochu.dmp tables=(table1)
时间: 2024-10-25 10:20:20