码迷,mamicode.com
首页 > 数据库 > 详细

oracle索引简单使用

时间:2018-01-02 11:28:47      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:pre   lte   project   oracle   body   ora   drop   create   and   

--查询表索引
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索引简单使用

标签:pre   lte   project   oracle   body   ora   drop   create   and   

原文地址:https://www.cnblogs.com/xmqa/p/8175704.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!