免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1906 | 回复: 0
打印 上一主题 下一主题

oracle 10G 表空间迁移 索引需要重建 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-23 01:07 |只看该作者 |倒序浏览

昨天进行了表空间迁移的维护,维护后出现一个问题:MYTEST用户下的表表空间迁移后索引存在失效。
针对该问题和其他DBA进行了一些沟通,大家理解并不统一。后通过实际测试发现,表空间迁移后没有数据的表索引正常,但有数据的表的相关索引确实会失效,
解决的方法是REBUILD索引(今早rubuild MYTEST下的所有索引,通过select INDEX_NAME,status from user_indexes确认status均为VALID的正常状态)。

进一步查找资料发现:
Moving a table changes the rowids of the rows in the table. This causes indexes on the table to be marked UNUSABLE,
and DML accessing the table using these indexes will receive an ORA-01502 error. The indexes on the table must be dropped or rebuilt.
Likewise, any statistics for the table become invalid and new statistics should be collected after moving the table.
移动表会导致行的rowid变化,导致该表上面的index不可用,即标记为UNUSABLE,当用DML来操作该表时用到该索引,会引发ORA-01502 error,因此索引必须drop或者rebuild。
该表的统计信息也会失效,所以需要重新对该表进行统计分析,即analyze table *** compute statistics。)

但是针对ORA-01502,实际测试时并不存在
测试步骤:
SQL> create table test_altertablespace (col1 number) tablespace USERS;------------------------------------------------------创建测试表,表空间为USERS
Table created

SQL> create index idx_test_altertablespace on test_altertablespace(col1);----------------------------------------------------创建索引
Index created

SQL> select tablespace_name,status from user_indexes where index_name = 'IDX_TEST_ALTERTABLESPACE';--确认索引的状态为VALID
TABLESPACE_NAME                STATUS
------------------------------ --------
IN_MYTEST_DATA                     VALID

SQL> alter table test_altertablespace move tablespace IN_MYTEST_DATA;--------------------------------------------------迁移表空间到IN_MYTEST_DATA
Table altered

SQL> select tablespace_name,status from user_indexes where index_name = 'IDX_TEST_ALTERTABLESPACE';--确认索引的状态为VALID
TABLESPACE_NAME                STATUS
------------------------------ --------
IN_MYTEST_DATA                     VALID

SQL> insert into test_altertablespace values(1);------------------------------------------------------------------------------------------插入数据
1 row inserted
SQL> commit;
Commit complete

SQL> select tablespace_name,status from user_indexes where index_name = 'IDX_TEST_ALTERTABLESPACE';--确认索引的状态为VALID
TABLESPACE_NAME                STATUS
------------------------------ --------
IN_MYTEST_DATA                     VALID

SQL> alter table test_altertablespace move tablespace users;----------------------------------------------------------------------移动表空间到USERS
Table altered

SQL> select tablespace_name,status from user_indexes where index_name = 'IDX_TEST_ALTERTABLESPACE';--确认索引的状态为UNUSABLE
TABLESPACE_NAME                STATUS
------------------------------ --------
IN_MYTEST_DATA                     UNUSABLE
 

本文出自 “麦地坞” 博客,请务必保留此出处http://yunlongzheng.blog.51cto.com/788996/397758

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP