oracle导入.dmp文件
Posted 技术即艺术
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle导入.dmp文件相关的知识,希望对你有一定的参考价值。
在日常开发中,经常需要往一个数据库里导入.dmp文件,下面简单介绍下如何通过命令导入
1.创建一个awsbpm用户
create user 用户名 identified by 密码;
如:create user test identified by test;
2.用户赋予相应的权限,权限最好赋高一点
grant connect,resource,dba to test;
3.oracle中导入dmp文件,buffer最好给大点
imp userid=‘sys/[email protected] as sysdba‘ file=f:\awsbpm.dmp rows=y fromuser=test touser=test statistics=none buffer=10000000
以上是关于oracle导入.dmp文件的主要内容,如果未能解决你的问题,请参考以下文章