您的位置:首页 > 其它

导出/导入数据时不会对统计信息产生影响

2013-03-14 18:55 531 查看
--导出/导入数据时统计信息不会发生变化
scott@ORCL> create table t as select * from dba_objects;

表已创建。
scott@ORCL> create directory dump2 as 'd:/dump1';

目录已创建。
scott@ORCL> exec dbms_stats.gather_table_stats(user,'T');

PL/SQL 过程已成功完成。

scott@ORCL> select to_char(last_analyzed,'yyyy-mm-dd hh24:mi:ss') from user_tables where table_name='T';

TO_CHAR(LAST_ANALYZ
-------------------
2013-03-14 18:41:36

--expdp语句不加;
C:\Users\Administrator>expdp scott/tiger@ORCL dumpfile=1.dmp directory=dump2 tables=T

Export: Release 11.2.0.1.0 - Production on 星期四 3月 14 18:50:21 2013
Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
启动 "SCOTT"."SYS_EXPORT_TABLE_01":  scott/********@ORCL dumpfile=1.dmp directory=dump2 tables=T
正在使用 BLOCKS 方法进行估计...
处理对象类型 TABLE_EXPORT/TABLE/TABLE_DATA
使用 BLOCKS 方法的总估计: 10 MB
处理对象类型 TABLE_EXPORT/TABLE/TABLE
处理对象类型 TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . 导出了 "SCOTT"."T"                                 7.853 MB   81756 行
已成功加载/卸载了主表 "SCOTT"."SYS_EXPORT_TABLE_01"
******************************************************************************
SCOTT.SYS_EXPORT_TABLE_01 的转储文件集为:
D:\DUMP1\1.DMP
作业 "SCOTT"."SYS_EXPORT_TABLE_01" 已于 18:50:41 成功完成

--导入dmp文件
C:\Users\Administrator>impdp scott/tiger@orcl directory=dump2 dumpfile=1.dmp remap_schema=scott:sh
Import: Release 11.2.0.1.0 - Production on 星期四 3月 14 18:53:33 2013
Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
已成功加载/卸载了主表 "SCOTT"."SYS_IMPORT_FULL_01"
启动 "SCOTT"."SYS_IMPORT_FULL_01":  scott/********@orcl directory=dump2 dumpfile=1.dmp remap_schema=scott:sh
处理对象类型 TABLE_EXPORT/TABLE/TABLE
处理对象类型 TABLE_EXPORT/TABLE/TABLE_DATA
. . 导入了 "SH"."T"                                    7.853 MB   81756 行
处理对象类型 TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
作业 "SCOTT"."SYS_IMPORT_FULL_01" 已于 18:53:43 成功完成

sh@ORCL> select to_char(last_analyzed,'yyyy-mm-dd hh24:mi:ss') from user_tables where table_name='T';

TO_CHAR(LAST_ANALYZ
-------------------
2013-03-14 18:41:36
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: