达梦数据库的索引
程序员文章站
2022-03-03 20:15:07
...
一、索引概述
索引的作用:加快对表的查询,数据库对表做DML操作,默认的维护索引。
话外音:用到索引实际是对索引结构的遍历。索引的高度约高,说明数据越多。
添加索引所具备的基本要求:
1.经常查询的列;
2.返回值是表的数据的一小部分;
3.连接条件的列上;
4.谓词经常出现的列(如where后面的列)。
注意:列上有大量数据是null的不建议建索引,原因是索引不会存null
达梦数据库的索引类型:
二级索引,复合索引,函数索引,唯一索引,分区索引,位图索引,位图连接索引
其中二级索引叫二级索引的原因是达梦数据库建表的时候有个默认索引,所以创建的新索引就为二级索引。
二、创建索引:
SQL> create table emp as select * from employee;
例子:
SQL> create tablespace indx datafile '/dm7/indx.dbf' size 32;
SQL> create index ind_emp on emp (employee_id) tablespace indx;
SQL> select table_name,index_name from user_indexes where table_name='EMP';
SQL> explain select * from emp where employee_id<100;
SQL> begin dbms_stats.gather_table_stats('DMHR','EMP');
end;---收集统计信息
/
注意:收集统计信息的动态采样一般在7%到10%之间,不要在系统业务高峰期进行收集统计信息操作。
三、重建索引:
SQL> alter index ind_emp rebuild;
SQL> alter index ind_emp rebuild online;(建议使用)
四、删除索引:
SQL> drop index ind_emp;
结后语:索引的创建、删除、重建要在非高峰期进行操作