oracle关于索引知识
1、创建一个单一的索引:
create index 索引名称 on 表名(列名);
2、创建复合索引
create index 索引名称 on 表名(列名1,列名2);
3、删除索引
drop index 索引名称;
4、查询表的索引
select * from all_indexes where table_name = '表名称';
5、查询表的索引列
select* from all_ind_columns where table_name = '表名称';
6、索引表空间
select 'alter index' ||index_name|| 'rebuild tablespace tbs_name;' index_name from dba_indexes where wner='%***%' and table_name like '%***%'
7、表空间迁移
select 'alter table' ||table_name|| 'move tablespace tbs_name;' table_name from dba_tables where wner='%***%' and table_name like '%***%'
8、带lob字段
select 'alter table' ||table_name|| 'move lob('||index_name||') store as (tablespace tbs_name);' from dba_indexes where wner='%***%' and index_name like '%***%'
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。