数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

ORACLE的索引和约束详解


发布日期:2022年01月12日
 
ORACLE的索引和约束详解

Oracle的约束

* 如果某个约束只作用于单独的字段即可以在字段级定义约束也可以在表级定义约束但如果某个约束作用于多个字段

必须在表级定义约束

* 在定义约束时可以通过CONSTRAINT关键字为约束命名如果没有指定ORACLE将自动为约束建立默认的名称

定义primary key约束(单个字段)

create table employees (empno number() primary key)

指定约束名

create table employees (empno number() constraint emp_pk primary key)

定义primary key约束(多个字段在表级定义约束)

create table employees

(empno number()

deptno number() not null

constraint emp_pk primary key(empnodeptno)

using index tablespace indx

storage (initial K

next K

)

)

ORACLE自动会为具有PRIMARY KEY约束的字段(主码字段)建立一个唯一索引和一个NOT NULL约束定义PRIMARY KEY约束时可以为它的索引

指定存储位置和存储参数

alter table employees add primary key (empno)

alter table employees add constraint emp_pk primary key (empno)

alter table employees add constraint emp_pk primary key (empnodeptno)

not null约束(只能在字段级定义NOT NULL约束在同一个表中可以定义多个NOT NULL约束)

alter table employees modify deptno not null/null

unique约束

create table employees

( empno number()

ename varchar()

phone varchar()

email varchar() unique

deptno number() not null

constraint emp_ename_phone_uk unique (enamephone)

)

alter table employees

add constraint emp_uk unique(enamephone)

using index tablespace indx

定义了UNIQUE约束的字段中不能包含重复值可以为一个或多个字段定义UNIQUE约束因此UNIQUE即可以在字段级也可以在表级定义

在UNIQUED约束的字段上可以包含空值

foreign key约束

* 定义为FOREIGN KEY约束的字段中只能包含相应的其它表中的引用码字段的值或者NULL值

* 可以为一个或者多个字段的组合定义FOREIGN KEY约束

* 定义了FOREIGN KEY约束的外部码字段和相应的引用码字段可以存在于同一个表中这种情况称为自引用

* 对同一个字段可以同时定义FOREIGN KEY约束和NOT NULL约束

定义了FOREIGN KEY约束的字段称为外部码字段被FORGIEN KEY约束引用的字段称为引用码字段引用码必须是主码或唯一码包含外部码的表称为子表

包含引用码的表称为父表

A:

create table employees

(

deptno number() NOT NULL

constraint emp_deptno_fk foreign key (deptno)

references dept (deptno)

)

如果子表中的外部码与主表中的引用码具有相同的名称可以写成:

B:

create table employees

(

deptno number() NOT NULL

constraint emp_deptno_fk references dept

)

注意

上面的例子(B)中not null后面没有加逗号因为这一句的contraint是跟在那一列deptno后面的属于列定义所以都无需指明列而A例中的是表定义需要指明那一列所以要加逗号不能在列后面定义还可以写成

create table employees

(empno char()

deptno char() not null constraint emp_deptno_fk references dept

ename varchar()

)

表定义contraint的只能写在最后再看两个例子

create table employees

(empno number()

ename varchar()

deptno char() not null constraint emp_deptno_fk references dept

constraint emp_pk primary key(empnoename)

)

create table employees

( empno number()

ename varchar()

phone varchar()

email varchar() unique

deptno number() not null

constraint emp_pk primary key(empnoename)

constraint emp_phone_uk unique (phone)

)

添加foreign key约束(多字段/表级)

alter table employees

add constraint emp_jobs_fk foreign key (jobdeptno)

references jobs (jobiddeptno)

on delete cascade

更改foreign key约束定义的引用行为(delete cascade/delete set null/delete no action)默认是delete on action

引用行为(当主表中一条记录被删除时确定如何处理字表中的外部码字段)

delete cascade : 删除子表中所有的相关记录

delete set null :将所有相关记录的外部码字段值设置为NULL

delete no action: 不做任何操作

先删除原来的外键约束再添加约束

ALTER TABLE employees DROP CONSTRAINT emp_deptno_fk;

ALTER TABLE employees ADD CONSTRAINT emp_deptno_fk FOREIGN KEY(deptno) REFERENCES dept(deptno) ON DELETE CASCADE;

check约束

* 在CHECK约束的表达式中必须引用到表中的一个或多个字段并且表达式的计算结果必须是一个布尔值

* 可以在表级或字段级定义

* 对同一个字段可以定义多个CHECK约束同时也可以定义NOT NULL约束

create table employees

(sal number()

constraint emp_sal_ck check (sal > )

)

alter table employees

add constraint emp_sal_ck check (sal < )

删除约束

alter table dept drop unique (dnameloc) 指定约束的定义内容

alter table dept drop constraint dept_dname_loc_uk 指定约束名

删除约束时默认将同时删除约束所对应的索引如果要保留索引用KEEP INDEX关键字

alter table employees drop primary key keep index

如果要删除的约束正在被其它约束引用通过ALTER TABLEDROP语句中指定CASCADE关键字能够同时删除引用它的约束

利用下面的语句在删除DEPT表中的PRIMARY KEY约束时同时将删除其它表中引用这个约束的FOREIGN KEY约束:

alter table dept drop primary key cascade

禁用/激活约束(禁用/激活约束会引起删除和重建索引的操作)

alter table employees disable/enable unique email

alter table employees disable/enable constraint emp_ename_pk

alter tabel employees modify constraint emp_pk disable/enable

alter tabel employees modify constraint emp_ename_phone_uk disable/enable

如果有FOREIGN KEY约束正在引用UNIQUE或PRIMARY KEY约束则无法禁用这些UNIQUE或PRIMARY KEY约束

这时可以先禁用FOREIGN KEY约束然后再禁用UNIQUE或PRIMARY KEY约束或者可以在ALTER TABLEDISABLE

语句中指定CASCADE关键字这样将在禁用UNIQUE或PRIMARY KEY约束的同时禁用那些引用它们的FOREIGN KEY约束

alter table employees disable primary key cascade

约束数据字典

all_constraints/dba_constraints/user_constraints 约束的基本信息包括约束的名称类型状态

(约束类型C(CHECK约束)P(主码约束)R(外部码约束)U(唯一码约束))

all_cons_columns/dba/user 约束对应的字段信息

Oracle的索引

索引和对应的表应该位于不同的表空间中oracle能够并行读取位于不同硬盘上的数据可以避免产生I/O沖突

B树索引在B树的叶节点中存储索引字段的值与ROWID

唯一索引和不唯一索引都只是针对B树索引而言

Oracle最多允许包含个字段的复合索引

索引创建策略

导入数据后再创建索引

不需要为很小的表创建索引

对于取值范围很小的字段(比如性别字段)应当建立位图索引

限制表中的索引的数目

为索引设置合适的PCTFREE值

存储索引的表空间最好单独设定

创建不唯一索引

create index emp_ename on employees(ename)

tablespace users

storage()

pctfree ;

创建唯一索引

create unique index emp_email on employees(email)

tablespace users;

创建位图索引

create bitmap index emp_sex on employees(sex)

tablespace users;

创建反序索引

create unique index order_reinx on orders(order_numorder_date)

tablespace users

reverse;

创建函数索引(函数索引即可以是普通的B树索引也可以是位图索引)

create index emp_substr_empno

on employees(substr(empno))

tablespace users;

修改索引存储参数(与表类似INITIAL和MINEXTENTS参数在索引建立以后不能再改变)

alter index emp_ename storage(pctincrease );

由于定义约束时由oracle自动建立的索引通常是不知道名称的对这类索引的修改经常是利用alter table using index语句进行的而不是alter index语句

利用下面的语句将employees表中primary key约束对应的索引的PCTFREE参数修改为

alter table employees enable primary key using index pctfree ;

清理索引碎片

合并索引(只是简单的将B树叶结点中的存储碎片合并在一起并不会改变索引的物理组织结构)

alter index emp_pk coalesce;

重建索引(不仅能够消除存储碎片还可以改变索引的全部存储参数设置并且可以将索引移动到其它的表空间中重建索引

实际上就是再指定的表空间中重新建立一个新的索引然后删除原来的索引)

alter index emp_pk rebuild;

删除索引

drop index emp_ename;

如果索引中包含损坏的数据块或者包含过多的存储碎片需要首先删除这个索引然后再重建它

如果索引是在创建约束时由oracle自动产生的可以通过禁用约束或删除约束的方法来删除对应的索引

在删除一个表时oracle会自动删除所有与该表相关的索引

索引数据字典

all_indexes/dba_indexes/user_indexes 索引的基本信息

all_ind_columns/dba_ind_columns/user_ind_columns 索引对应的字段信息

上一篇:髒数据潜在的隐患以及数据整合

下一篇:Oracle使用hash分区优化分析函数查询