首页 > 数据库技术 > 详细

IMP-00013: 只有 DBA 才能导入由其他 DBA 导出的文件

时间:2014-03-12 20:03:50      阅读:789      评论:0      收藏:0      [点我收藏+]
 

分类: Linux

 

IMP-00013: only a DBA can Import a file Exported by another时间:2010-07-12 10:17来源:网络作者:admin 点击: 675次 -

IMP-00013: only a DBA can Import a file Exported by another DBA异常问题解决方案:
〖环境(Environment)〗
OS:RHEL 5
DB:Oracle 10g

〖现象(Symptom)〗DUMP文件EMPTY.dmp是由用户test产生的。test2执行数据的导入,把文件EMPTY.dmp的内容导入数据库,但是产生IMP-00013错误,如下所示:

$imp test2/test2 file=EMPTY.dmp ignore=yes
Import: Release 10.1.0.3.0 - Production on Fri Aug 25 19:15:19 2006
Copyright (c) 1982, 2004, Oracle.  All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release
10.1.0.3.0 - Production
With the Partitioning, OLAP and Data Mining options
Export file created by Export:V10.01.00 via conventional path
IMP-00013: only a DBA can Import a file Exported by another DBA
IMP-00000: Import terminated unsuccessfully


〖原因(Cause)〗

要想导入由其他用户创建的DUMP文件,执行导入的用户必须具有IMP_FULL_ DATABASE权限。

〖方法(Action)〗

以用户system的身份登录数据库。

SQL> CONNECT system
Enter password:
Connected.


把IMP_FULL_DATABASE权限授予用户test2。

SQL> GRANT IMP_FULL_DATABASE to test2;
GRANT succeeded.


经过上面步骤就解决了:IMP-00013: only a DBA can Import a file Exported by another DBA这个问题

IMP-00013: 只有 DBA 才能导入由其他 DBA 导出的文件,布布扣,bubuko.com

IMP-00013: 只有 DBA 才能导入由其他 DBA 导出的文件

原文:http://www.cnblogs.com/fgm119/p/3597033.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!