Oracle 索引相关

1、创建索引

create index 索引名 on 表名(列名);

2、删除索引

drop index 索引名;

3、创建组合索引

create index 索引名 on 表名(列名1,,列名2);

4、查询索引

--根据索引名,查询表索引字段
select * from user_ind_columns where index_name='索引名';
--根据表名,查询一张表的索引
select * from user_indexes where table_name='表名';

5、查询数据库中是否有失效的索引 ​​​​​​​【valid 表示索引有效,N/A表示分区索引,其余标志代表索引失效】

select index_name,status from user_indexes;

6、查询指定索引是否失效 ​​​​​​​​​​​​​​【valid 表示索引有效,N/A表示分区索引,其余标志代表索引失效】

select status from user_indexes where index_name='索引名'

7、查询数据库所有表中的数据量多少

select table_name,num_rows from user_tables;

8、查看表的统计信息刷新时间(last_analyzed 为刷新时间,表名需大写)

select owner,table_name,status,last_analyzed from dba_tables where table_name = '表名';

你可能感兴趣的:(Oracle)