alter session set skip_unusable_indexes=true
原创
©著作权归作者所有:来自51CTO博客作者liwei1的原创作品,请联系作者获取转载授权,否则将追究法律责任
1.
alter session set skip_unusable_indexes=true;
[url]http://www.seeitco.com/doc/Html/DataBasc/105625986.html[/url]
2. 请问如何恢复unusable的索引
2.1
SQL> create table test as select * from all_objects;
Table created.
SQL> create index t_owner_ind on test(owner);
Index created.
SQL> alter index t_owner_ind unusable;
Index altered.
SQL> drop index t_owner_ind;
Index dropped.
SQL>
2.2
SQL> create table test as select * from sys.dba_objects;
Table created.
SQL> alter table test add constraint unique_id unique(object_id);
Table altered.
SQL> select index_name from user_indexes where lowercase(table_name)='test';
select index_name from user_indexes where lowercase(table_name)='test'
*
ERROR at line 1:
ORA-00904: "LOWERCASE": invalid identifier
SQL> select index_name from user_indexes where lower(table_name)='test';
INDEX_NAME
------------------------------
UNIQUE_ID
SQL> select segment_name from user_segments;
SEGMENT_NAME
--------------------------------------------------------------------------------
UNIQUE_ID
TEST_CON
TEST
SALGRADE
BONUS
PK_EMP
EMP
PK_DEPT
DEPT
9 rows selected.
SQL> alter table test drop constraint unique_id;
Table altered.
SQL> select index_name from user_indexes where lower(table_name)='test';
no rows selected
SQL> select segment_name from user_segments;
SEGMENT_NAME
--------------------------------------------------------------------------------
TEST_CON
TEST
SALGRADE
BONUS
PK_EMP
EMP
PK_DEPT
DEPT
8 rows selected.
SQL>
不存在unique_id segment.
4. ORA-01502 state unusable错误成因和解决方法(二)
5. SKIP_UNUSABLE_INDEXES的使用与索引实效解决方法
上一篇:ftp 上传

提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
MySQL 给用户添加 ALTER VIEW 的权限
在某些情况下,需要为用户添加特定的权限,例如 ALTER VIEW 权限,以允许他们修改视图。
数据库 MySQL 数据 ALTER VIEW 视图