oracle数据库导入导出命令
Posted 追梦百合fly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle数据库导入导出命令相关的知识,希望对你有一定的参考价值。
数据导出:
1 将数据库TEST完全导出,用户名system 密码manager 导出到D:\daochu.dmp中
exp system/[email protected] file=d:\daochu.dmp full=y
2 将数据库中system用户与sys用户的表导出
exp system/[email protected] file=d:\daochu.dmp owner=(system,sys)
3 将数据库中的表table1 、table2导出
exp system/[email protected] file=d:\daochu.dmp tables=(table1,table2)
4 将数据库中的表table1中的字段filed1以"00"打头的数据导出
exp system/[email protected] file=d:\daochu.dmp tables=(table1)
query=\" where filed1 like ‘00%‘\"
同名用户之间的数据导入:
imp system/[email protected] file=D:\daochu.dmp log=c:\orabackup\hkbimp.log full=y
不同名用户之间的数据导入:
imp system/[email protected] fromuser=system touser=system_new file=D:\daochu.dmp
以上是关于oracle数据库导入导出命令的主要内容,如果未能解决你的问题,请参考以下文章