Is an index clustered or unclustered in Oracle?

前端 未结 4 1461
攒了一身酷
攒了一身酷 2021-01-02 07:21

How can I determine if an Oracle index is clustered or unclustered?

I\'ve done

select FIELD from TABLE where rownum <100

where

4条回答
  •  既然无缘
    2021-01-02 07:44

    There is no concept of a "clustered index" in Oracle as in SQL Server and Sybase. There is an Index-Organized Table, which is similar but not the same.

提交回复
热议问题