oracle表的导出与导入
Posted 小邓同学
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 kjeccus/[email protected]KJTEST file=d:\daochu.dmp owner=(kjeccus,dbwork )
1 将数据库TEST完全导出,用户名system 密码manager 导出到D:\daochu.dmp中
exp system/[email protected] file=d:\daochu.dmp full=y
2 将数据库中system用户与sys用户的表导出
exp kjeccus/[email protected]KJTEST file=d:\daochu.dmp owner=(kjeccus,dbwork )
1 将D:\daochu.dmp 中的数据导入 TEST数据库中。
imp system/[email protected] file=d:\daochu.dmp
imp aichannel/[email protected] full=y file=file= d:\data\newsmgnt.dmp ignore=y 中
imp system/[email protected] file=d:\daochu.dmp
imp aichannel/[email protected] full=y file=file= d:\data\newsmgnt.dmp ignore=y 中
以上是关于oracle表的导出与导入的主要内容,如果未能解决你的问题,请参考以下文章
关于在eclipse for javaee中修改servlet新建模板