CREATE VIEW VIEW_NAME
AS
SELECT * FROM BASE_TABLE
[WITH READ ONLY]
[WITH CHECK OPTION]
查看当前用户能够使用的所有视图
select * from user_views;
删除视图
drop view VIEW_NAME;
创建一个员工视图,其中只显示员工姓名、性别和入职日期
create or replace view empview
as
select ename,sex,hire from emp;
查看视图结构
desc empview;
只能向基于单表的视图添加数据
insert into empview values(20,'coco','f',sysdate);
create or replace view empview
as
select * from emp where sar>5000;
向该视图添加数据
insert into empview values(21,'cole','m',sysdate,4000,2);
create or replace view empview
as
select * from emp where sar>5000
with check option;
此时向视图添加数据时,必须满足 sar>5000
索引是基于表建立的一种数据结构,通过表中的某些字段上建立索引,可以提高系统对表的查询速度
索引表中只保存索引关键字和纪录号,查询时根据索引关键字,可以从索引表中找到对应的纪录号,根据纪录号就可以快速的将纪录指针移到与关键字相对应的纪录上
--创建不唯一索引
CREATE INDEX index_name on TABLE_NAME(index_column)
[pctfree 0];
--创建唯一索引
CREATE UNIQUE INDEX idx_emp_ename on EMP(empno)
[pctfree 0];
--创建位图索引
CREATE bitmap INDEX idx2 on EMP(sex);
--可能的值少,重复多
user_indexes
:存放用户所创建的索引信息user_ind_columns
:存放用户索引的字段信息select index_name,column_name,column_position from user_ind_columns where table_name=‘emp‘;
drop index indexname;
同义词是为 oracle 数据库中的对象创建的别名,使该对象的非创建者也可以直接通过该别名来访问
scott 如果需要创建公共同义词,必须由管理员 sys 授予权限
conn sys as sysdba;
grant create public synonym to scott;
之后使用 scott/tiger 登录,创建公共同义词
conn scott/tiger;
create public synonym sc for emp;
授予其他用户访问公共同义词的权限
grant select on sc to tom
**scott 如果需要删除公共同义词,也必须由管理员 sys 授予权限 **
conn sys as sysdba;
grant drop public synonym to scott;
之后使用 scott 登录,并删除公共同义词
conn scott/tiger;
drop public synonym sc;
私有同义词由当前用户创建,并只能由当前用户才能访问
create synonym sc for emp;
**删除私有同义词使用 **
drop synonym sc;
DBA_SYNONYMS
:是数据库中的所有同义词的描述ALL_SYNONYMS
:是数据库中的所有同义词的描述User_SYNONYMS
:是用户可存取的所有同义词create sequence seqname
increment by 1
start with 1 --不能小于minvalue的值
minvalue 1
maxvalue [nomaxvalue] 100
cycle[nocycle]
cache[nocache] 20
create sequence seqname
increment by 1
start with 3
minvalue 1
maxvalue 10
cycle
nocache;
如果需要取出序列的值,可以使用以下两个关键字
currval
:表示序列的当前值。刚刚创建的序列没有当前值。必须使用 nextval
后才能获取当前值nextval
:表示序列的下一个值####4.3 使用序列
反复执行以下代码后,可以看到序列的值在增加到 10 之后,重新从 1 开始增加
select seqname.nextval from dual;
使用以下语句能查看序列的当前值
select seqname.currval from dual;
在向数据表添加数据时,指定记录的主键值由序列生成
create sequence seq;
create table tb(
tid integer primary key,
nam varchar2(20)
);
insert into tb values(seq.nextval,'tom');
insert into tb values(seq.nextval,'jack');
insert into tb values(seq.nextval,'kelly');
删除一个序列
drop sequence seqname;
DBA_SEQUENCE
:存放数据库中的所有序列的描述信息ALL_SEQUENCE
:存放当前用户可存取的所有序列USER_SEQUENCES
:用户序列的说明currval
使用以下语句能查看当前数据库有哪些表空间组成
select tablespace_name from user_tablespaces;
表空间数据 | 作用 |
---|---|
表段 | 存放表数据 |
索引段 | 存放索引数据 |
临时段 | 排序 |
回滚段 | 事务读一致性、回滚 |
sys 查看有哪些表空间 |
select * from v$tablespace;
查看有哪些数据文件
select * from v$datafile;
Oracle 自带表空间名称 | 作用 |
---|---|
SYSTEM | 存放着数据库中所有的数据字典。是存放 Oracle 数据库必要数据的表空间。不建议在其中存放用户自己的数据对象 |
SYSAUX | 该表空间在 Oracle10g 中被引入,是 SYSTEM 表空间的辅助表空间。用来存放 oracle 提供的新功能的模式对象,如:空间数据选项、XMLDB 和中间件 |
UNDOTBS1 | 用来记录用户数据发生改变的信息 |
TEMP | 临时表空间,用来存放排序和查询的临时数据。临时表空间特点是不做备份,没有 redo 日志 |
USERS | 存放用户数据对象的表空间 |
EXAMPLE | 一个自带的示例表空间 |
create [temporary|undo] tablespace
[logging|nologging]
datafile 'path/name.dbf' size xM reuse
[autoextend on next xxxk maxsize xxM|unlimited]
[extent management local|dictionary]
temporary
|undo
表示创建表空间的类型,不指定时默认为数据表空间
logging
|nologging
表示是否记录日志
datafile
指定表空间数据文件的存放路径
autoextend on
设定数据文件的空间增长方式
extent management
设定表空间的管理方式,推荐 local
create tablespace test
nologging
datafile 'f:/test01.dbf' size 50M reuse
autoextend on next 512k maxsize 100M
extent management local;
create temporary tablespace testtemp
tempfile 'f:/testtemp01.dbf' size 10M
extent management local;
create undo tablespace testundo
datafile 'f:/testundo.log' size 10M;
如果 test 数据表空间的数据文件指定了最大容量 maxsize
的值,且该值不是 unlimited
时,数据文件有可能在使用过程中出现容量不足的情况,此时可以为表空间添加数据文件
alter tablespace test
add datafile 'f:/test02.dbf' size 50M maxsize unlimited;
或者修改原有数据文件的最大容量
alter database datafile 'f:/test01.dbf' resize 200M;
如果不再需要某个数据文件,可以删除
alter tablespace test drop datafile 'f:/test02.dbf';
设置表空间为只读,只读表空间不能写数据,可删除数据
alter tablespace test read only
恢复表空间为可读写
alter tablespace test read write
alter tablespace test offline normal;
alter tablesapce test online;
`1.表空间脱机:
alter tablespace test offline normal
2.直接重命名数据文件或移动数据文件
3.修改表空间同数据文件的对应关系
alter tablespace test
rename datafile '原数据文件路径和名称'
to '新的数据文件路径和名称'
4.表空间联机
alter tablespace test online
当不再需要某个表空间时,可以删除
drop tablespace test--只删除逻辑名称
including contents --删除表空间中的对象(可选)
and datafiles --包括删除数据文件(可选)
1.如果没有 including contents and datafiles 选项,将只删除表空间的逻辑名称,并没有删除表空间中的数据对象以及数据文件;
2.including contents 表示删除表空间中的所有数据对象;
3.and datafiles 表示同时删除表空间对应的所有数据文件;