经由常规路径由 EXPORT:V10.02.01 创建的导出文件 IMP-00013: 只有 DBA 才能导入由其他 DBA 导出的文件 IMP-00000: 未成功终止导入 imp时连接用户没有DBA权限或者default role不是DBA 你可以换个DBA role的用户IMP。 如果你还想用这个用户,如果这个用户没DBA权限就grant dba to 用户; 如果default role不是DBA,...
IMP-00013:只有 DBA 才能导入由其它 DBA 导出的文件 IMP-00000: 未成功终止 示例:imp mydb/psw@ORCL file=e:\oracleback.dmp 原因:用户mydb不具有导入文件的权限。 解决方法:提升mydb的用户权限; GRANT IMP_FULL_DATABASE to mydb; 或者在管理界面,将dba角色授予用户mydb。
或者,如果只想导入特定用户或表的数据,可以使用FROMUSER和TOUSER参数: bash imp YOUR_USERNAME/password@ORCL file=path_to_dmp_file FROMUSER=source_user TOUSER=target_user 检查导入结果: 查看导入过程中的警告和错误信息,确保导入成功。 3. 如果用户不是dba,说明只有dba才能导入imp00013的原因 原因说明: IM...
办法二 ( 推荐 ) :涉及到表空间等 添加DBA权限 移除DBA权限
IMP-00013: only a DBA can import a file exported by another DBA 处理方法:在给目标环境的用户赋予dba权限,或者细粒度一些,赋予imp_full_database的权限 (常规) -- 查看用户权限 SQL> select * from dba_sys_privs where grantee = 'XXX';
IMP-00013: 只有 DBA 才能导入由其他 DBA 导出的文件 IMP-00013: only a DBA can import a file exported by another DBA 处理方法:在给目标环境的用户赋予dba权限,或者细粒度一些,赋予imp_full_database的权限 (常规) -- 查看用户权限 SQL> select * from dba_sys_privs where grantee = 'XXX';...
IMP-00013: 只有 DBA 才能导入由其他 DBA 导出的文件 IMP-00013: only a DBA can import a file exported by another DBA 处理方法:在给目标环境的用户赋予dba权限,或者细粒度一些,赋予imp_full_database的权限 (常规) -- 查看用户权限 SQL> select * from dba_sys_privs where grantee = 'XXX';...
IMP-00013: only a DBA can import a file exported by another DBA IMP-00000: Import terminated unsuccessfully基本有两种思路,一种是赋予dba权限,另外一种是赋予imp_full_database的权限。 通过错误的字面意思,是需要赋予dba的权限。如果这样做,就很被动了,因为目前测试环境有几十个,分别归属不同的开发小组,他...
需要授权导入用户为DBA。而后再使用该用户名进行导入即可,注意导入用户和dmp导出用户需要保持一致。若 connect /as sysdba时,出现提示ORA-01031: insufficient...
IMP-00013: only a DBA can import a file exported by another DBA IMP-00000: Import terminated unsuccessfully 基本有两种思路,一种是赋予dba权限,另外一种是赋予imp_full_database的权限。 通过错误的字面意思,是需要赋予dba的权限。如果这样做,就很被动了,因为目前测试环境有几十个,分别归属不同的开发小组,...