建立了索引却查不到索引信息,求助
建表示建立了索引,用pl/sql developer建的
这是建立索引的sql语句
-- Create/Recreate indexes
create unique index 时间 on FX0.CELL_A (TIME)
tablespace SYSTEM
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
可是我查询索引信息时却没有该索引,在sqlplus中用
select * from user_indexes where table_name='FX0.CELL_A'
查询,显示'未选定行‘。
大家帮帮忙!
------解决方案--------------------应该是这么查吧?FX0 是不是用户名哦。。
select * from user_indexes where table_name='
CELL_A'
------解决方案--------------------CREATE INDEX dbobjs_idx ON dbobjs (created) LOCAL
(PARTITION dbobjs_06 TABLESPACE users,
PARTITION dbobjs_07 TABLESPACE users
);你建到哪个分区了呀,另外可以用all_part_indexes来查是不是你用户不对