RT 。怎么查找一个索引在哪一个段里面?

解决方案 »

  1.   

    select segment_name, segment_type, tablespace_name from user_segments--dba_segments
    段的名称一般跟索引名是一样的
      

  2.   

    飞不起来的笨鸟:
    在oracle10.2.0中段有11种,分别是:
    table 
    table partition 
    index 
    index partition 
    cluster 
    rollback 
    deferred rollback 
    temporary 
    cache 
    lobsegment 
    lobindex 索引大体分2种(当然每个还有很多子索引):
    B*树索引(balanced)
    位图索引(bitmap index)