1. 程式人生 > >oracle索引簡單使用

oracle索引簡單使用

重建索引 where project 簡單使用 刪除 body esc oal acl

--查詢表索引
select * from user_ind_columns where table_name = upper(HY_PROJECT)
and column_name = upper(PRO_ID);
--創建索引
CREATE UNIQUE INDEX HY_PROJECT_PRO_ID on HY_PROJECT(PRO_ID);
--處理索引產生的碎片,重建索引或者合並索引
    --合並索引,無需額外存儲空間
    alter index HY_PROJECT_PRO_ID coalesce;
    --重建索引
    alter index HY_PROJECT_PRO_ID rebuild;
--刪除索引 drop index HY_PROJECT_PRO_ID;

oracle索引簡單使用