热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

IMP/EXP数据迁移(二)

之前发表过一篇关于IMPEXP的文章,有兴趣可以先了解下:EXPIMP数据迁移www.linuxidc.comLinux2013-0583810.htmexp

之前发表过一篇关于IMP/EXP的文章,有兴趣可以先了解下:EXP/IMP数据迁移 http://www.linuxidc.com/Linux/2013-05/83810.htm exp

之前发表过一篇关于IMP/EXP的文章,有兴趣可以先了解下:EXP/IMP数据迁移

exp:根据谓词短语,,导出表中的一部分数据,可以指定分区:

[lubinsu@localhost orcl]$ exp lubinsu/lubinsu file=serv_msg.dmp tables=serv_msg:p_nj query=\" where latn_id = 250 \" log=serv_msg.log compress=y
Export: Release 10.2.0.1.0 - Production on Wed Jun 26 22:46:02 2013
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Export done in ZHS16GBK character set and AL16UTF16 NCHAR character set
About to export specified tables via Conventional Path ...
. . exporting table SERV_MSG
. . exporting partition P_NJ 10008 rows exported
EXP-00091: Exporting questionable statistics.
Export terminated successfully with warnings.
[lubinsu@localhost orcl]$ ll
total 2536
-rw-rw-r-- 1 lubinsu lubinsu 2580480 Jun 26 22:46 serv_msg.dmp
-rw-rw-r-- 1 lubinsu lubinsu 493 Jun 26 22:46 serv_msg.log

以上导出的同时会导出相关的统计信息。

但是在导出过程中可能会提示:

EXP-00091 Exporting questionable statistics

因为如果在导出时,添加了谓词短语,则可能导致统计信息对于导出的数据并不准确,所以提示导出的统计信息不可用,这是合理的

如果不想看到这些统计信息,则可以,添加statistics=none,则不会导出相关的统计信息:

[lubinsu@localhost orcl]$ exp lubinsu/lubinsu file=serv_msg.dmp tables=serv_msg:p_nj query=\" where latn_id = 250 \" log=serv_msg.log compress=y statistics=none
Export: Release 10.2.0.1.0 - Production on Wed Jun 26 22:47:54 2013
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Export done in ZHS16GBK character set and AL16UTF16 NCHAR character set
About to export specified tables via Conventional Path ...
. . exporting table SERV_MSG
. . exporting partition P_NJ 10008 rows exported
Export terminated successfully without warnings.

官方文档是这么说的:

The Oracle docs note this on the EXP-00091 error:
EXP-00091 Exporting questionable statistics

--原因
Cause: Export was able to export statistics, but the statistics may not be useable. The statistics are questionable because one or more of the following happened during export:
- A row error occurred, client character set or NCHARSET does not match with the server, a query clause was specified on export,
- Only certain partitions or subpartitions were exported, or a fatal error occurred while processing a table.

--解决方法
Action: To export non-questionable statistics, change the client character set or NCHARSET to match the server, export with no query clause, or export complete tables.
If desired, import parameters can be supplied so that only non-questionable statistics will be imported, and all questionable statistics will be recalculated.


推荐阅读
  • 从码农到创业者:我的职业转型之路
    在观察了众多同行的职业发展后,我决定分享自己的故事。本文探讨了为什么大多数程序员难以成为架构师,并阐述了我从一家外企离职后投身创业的心路历程。 ... [详细]
  • Python 工具推荐 | PyHubWeekly 第二十一期:提升命令行体验的五大工具
    本期 PyHubWeekly 为大家精选了 GitHub 上五个优秀的 Python 工具,涵盖金融数据可视化、终端美化、国际化支持、图像增强和远程 Shell 环境配置。欢迎关注并参与项目。 ... [详细]
  • 对于许多初学者而言,遇到总线错误(bus error)或段错误(segmentation fault/core dump)是极其令人困扰的。本文详细探讨了这两种错误的成因、表现形式及解决方法,并提供了实用的调试技巧。 ... [详细]
  • 主调|大侠_重温C++ ... [详细]
  • 本文详细介绍了Java中实现异步调用的多种方式,包括线程创建、Future接口、CompletableFuture类以及Spring框架的@Async注解。通过代码示例和深入解析,帮助读者理解并掌握这些技术。 ... [详细]
  • 本文详细介绍了如何在 Android 中使用值动画(ValueAnimator)来动态调整 ImageView 的高度,并探讨了相关的关键属性和方法,包括图片填充后的高度、原始图片高度、动画变化因子以及布局重置等。 ... [详细]
  • 本文详细介绍了如何解压并安装MySQL集群压缩包,创建用户和组,初始化数据库,配置环境变量,并启动相关服务。此外,还提供了详细的命令行操作步骤和常见问题的解决方案。 ... [详细]
  • CentOS 6.8 上安装 Oracle 10.2.0.1 的常见问题及解决方案
    本文记录了在 CentOS 6.8 系统上安装 Oracle 10.2.0.1 数据库时遇到的问题及解决方法,包括依赖库缺失、操作系统版本不兼容、用户权限不足等问题。 ... [详细]
  • 本文详细介绍了如何在Ubuntu的Enlightenment (E17) 桌面环境中管理和优化桌面图标及根菜单。通过本文,您将了解这些功能的作用及其配置方法。 ... [详细]
  • 本文详细介绍了Linux系统中的进程管理函数,涵盖了获取进程ID、用户ID、创建子进程、信号处理等关键操作。通过这些函数,开发者可以更好地控制和管理进程行为。 ... [详细]
  • 本文详细介绍了如何在Linux系统中创建和管理DB2数据库,包括用户切换、数据库创建、错误处理、连接与断开、表空间和缓冲池的创建,以及用户权限管理和数据导入导出等操作。 ... [详细]
  • 本文深入探讨了UNIX/Linux系统中的进程间通信(IPC)机制,包括消息传递、同步和共享内存等。详细介绍了管道(Pipe)、有名管道(FIFO)、Posix和System V消息队列、互斥锁与条件变量、读写锁、信号量以及共享内存的使用方法和应用场景。 ... [详细]
  • CentOS 7.6环境下Prometheus与Grafana的集成部署指南
    本文旨在提供一套详细的步骤,指导读者如何在CentOS 7.6操作系统上成功安装和配置Prometheus 2.17.1及Grafana 6.7.2-1,实现高效的数据监控与可视化。 ... [详细]
  • 本文详细介绍了 Linux 系统中用户、组和文件权限的设置方法,包括基本权限(读、写、执行)、特殊权限(SUID、SGID、Sticky Bit)以及相关配置文件的使用。 ... [详细]
  • Shell脚本中变量操作详解
    本文基于《鸟哥的Linux私房菜》一书,详细介绍了Shell脚本中变量的使用方法,包括变量的赋值规则、字符串处理技巧以及环境变量的管理等,旨在帮助读者更好地理解和使用Shell中的变量。 ... [详细]
author-avatar
爱生活爱花落_485
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有