暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

openGauss每日一练第9天打卡|openGauss普通表索引

原创 zhazha16 2021-12-09
476

一、学习目标

学习openGauss普通表索引

索引是对数据库表中一列或多列的值进行排序的一种结构,使用索引可快速访问数据库表中的特定信息

二、课程学习

#第一次进入等待15秒 #数据库启动中... su - omm gsql -r

1.创建索引

create schema tpcds;
CREATE TABLE tpcds.ship_mode_t1
(
SM_SHIP_MODE_SK INTEGER NOT NULL,
SM_SHIP_MODE_ID CHAR(16) NOT NULL,
SM_TYPE CHAR(30),
SM_CODE CHAR(10),
SM_CARRIER CHAR(20),
SM_CONTRACT CHAR(20)
);

– SM_SHIP_MODE_SK字段上创建普通的唯一索引

CREATE UNIQUE INDEX ds_ship_mode_t1_index1 ON tpcds.ship_mode_t1(SM_SHIP_MODE_SK);

– SM_SHIP_MODE_SK字段上创建指定B-tree索引。

CREATE INDEX ds_ship_mode_t1_index4 ON tpcds.ship_mode_t1 USING btree(SM_SHIP_MODE_SK);

–SM_CODE字段上创建表达式索引

CREATE INDEX ds_ship_mode_t1_index2 ON tpcds.ship_mode_t1(SUBSTR(SM_CODE,1 ,4));

– SM_SHIP_MODE_SK字段上创建SM_SHIP_MODE_SK大于10的部分索引

CREATE UNIQUE INDEX ds_ship_mode_t1_index3 ON tpcds.ship_mode_t1(SM_SHIP_MODE_SK) WHERE SM_SHIP_MODE_SK>10;

–查看表信息

\d+ tpcds.ship_mode_t1

–查看系统视图pg_indexes

select * from pg_indexes where tablename = 'ship_mode_t1';

2.修改索引定义

–重命名索引

ALTER INDEX tpcds.ds_ship_mode_t1_index1 RENAME TO ds_ship_mode_t1_index5;

–设置索引不可用

ALTER INDEX tpcds.ds_ship_mode_t1_index2 UNUSABLE;

–修改索引表空间

CREATE TABLESPACE example0 RELATIVE LOCATION 'tablespace1/tablespace_0';
alter index tpcds.ds_ship_mode_t1_index4 set tablespace example0;
\d+ tpcds.ship_mode_t1;

3.重建索引

–重建一个单独索引

ALTER INDEX tpcds.ds_ship_mode_t1_index2 REBUILD;
REINDEX INDEX tpcds.ds_ship_mode_t1_index4;

–重建所有索引

reindex table tpcds.ship_mode_t1;

4.删除索引

DROP INDEX tpcds.ds_ship_mode_t1_index2;
DROP INDEX tpcds.ds_ship_mode_t1_index3;
DROP INDEX tpcds.ds_ship_mode_t1_index4;
DROP INDEX tpcds.ds_ship_mode_t1_index5;
 

三、课程作业

1.创建表products, 分别为表创建一个unique索引1,指定b-tree索引2和表达式索引3

create schema score;
create table score.products
(
id INTEGER NOT NULL,
name    CHAR(16) NOT NULL,
born     CHAR(16) NOT NULL,
number INTEGER,
weight   INTEGER
);

create unique index  products_index1 on score.products(id);
create index  products_index2 on score.products using btree(id);
create index  products_index3 on score.products(SUBSTR(name,1,4));
\d+ score.products


2.设置索引1不可用,修改索引2的表空间,重命名索引3

alter index score.products_index1 unusable;
create tablespace grade1 RELATIVE LOCATION 'tablespace1/tablespace_1';
alter index score.products_index2 set tablespace grade1;
\d+ score.products
alter index score.products_index3 rename to products_index4;
\d+ score.products



3.重建索引2和products的所有索引

alter index score.products_index2 rebuild;
\d+ score.products
reindex index score.products_index2;
\d+ score.products
reindex tables score.products;
\d+ score.products



4.使用\d+和系统视图pg_indexes查看索引信息

\d+ score.products
select * from pg_indexes where tablename = 'products';


5.删除索引、表和表空间

reindex table tpcds.ship_mode_t1;


「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论