前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >imp还原数据库_imp命令只导入数据

imp还原数据库_imp命令只导入数据

作者头像
全栈程序员站长
发布2022-09-30 17:44:08
1.2K0
发布2022-09-30 17:44:08
举报
文章被收录于专栏:全栈程序员必看

大家好,又见面了,我是你们的朋友全栈君。

全量恢复

代码语言:javascript
复制
imp 用户名/密码@数据库 file=导入文件地址 full=y ignore=y

部分表恢复

代码语言:javascript
复制
imp 用户名/密码@数据库 file=导入文件地址 fromuser=数据拥有者 touser=数据所需者 tables=(表a,表b)

问题及解决方案

问题1:

代码语言:javascript
复制
Import: Release 11.2.0.1.0 - Production on Mon Dec 30 14:54:35 2019

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.


Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

Export file created by EXPORT:V11.02.00 via conventional path
IMP-00013: only a DBA can import a file exported by another DBA
IMP-00000: Import terminated unsuccessfully

解决方案: 进入到SQL*Plus,给用户授权即可,例如:

代码语言:javascript
复制
#以下命令报错了
imp user1/pwd1@数据库 file=导入文件地址 fromuser=数据拥有者 touser=数据所需者 tables=(表a,表b)

#给user1授权即可
GRANT IMP_FULL_DATABASE to user1;

问题2:

代码语言:javascript
复制
Import: Release 11.2.0.1.0 - Production on Mon Dec 30 15:00:36 2019

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.


Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

Export file created by EXPORT:V11.02.00 via conventional path

Warning: the objects were exported by CHENHAO, not by you

import done in US7ASCII character set and AL16UTF16 NCHAR character set
import server uses AL32UTF8 character set (possible charset conversion)
export client uses ZHS16GBK character set (possible charset conversion)
. importing CHENHAO's objects into XS
IMP-00033: Warning: Table "TABLE_A" not found in export file
Import terminated successfully with warnings.

解决方案: 指定备份文件拥有者和备份的用户关系即可,例子:

代码语言:javascript
复制
#以下命令报错
imp 用户名/密码@数据库 file=导入文件地址 tables=(表a,表b)
imp 用户名/密码@数据库 file=导入文件地址 tables=表名
imp hcdl/hcdl@127.0.0.1:1521/orcl file=/mountssd/oracle/db_backup/hc/hc_2020-01-07.dmp fromuser=hc touser=hcdl tables=KR_ID
#加上后
imp 用户名/密码@数据库 file=导入文件地址 fromuser=数据拥有者 touser=数据所需者 tables=(表a,表b)
#全量恢复一样
imp 用户名/密码@数据库 file=导入文件地址 fromuser=数据拥有者 touser=数据所需者  full=y ignore=y

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/192678.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022年9月16日 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档