- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Oracle 基础培训
Oracle 的体系结构逻辑上分
instance -Tablespace -table,view,trigger,package,procedure...
在 User 下创建 Table,view,trigger,sequence...
物理上分
控制文件、数据文件、日志文件、参数文件等;
用户
查询所有用户
select * from all_users;
创建用户
create user tmp identified by tmp default tablespace users;
详细:
CREATE USER USERNAME PROFILE DEFAULT
IDENTIFIED BY username DEFAULT TABLESPACE JCY TEMPORARY TABLESPACE TEMP
ACCOUNT UNLOCK;
授权
grant connect,resource to tmp;
Connect:create session,create database link,create table… Resource:create table,create view,create procedure…
修改密码
alter user tmp identified by aaa;
删除用户
drop user tmp cascade;
当在用户下有数据存在时,必须加 Cascade 才能删除用户。
授权与角色
授权的增加与取消
grant select on ac01 to simis; revoke select on ac01 from simis;
角色的创建与删除
create role a;
grant select,update,delete on tab to a;
grant a to simis; drop role a;
User 间访问和 Instance 间访问
同一个 Instance 中的 User 间访问采用 Grant 授权
connect to simis;
grant select on ac01 to tmp; conn tmp/temp;
Select * from simis.ac01;
Instance 间访问采用 DBLink
Create database link to_center connect to simis identified by simis using ‘center’;
Select * from ac01@to_center;
有效条件
Database link 只有在服务器上创建才有效;同时要把 Init.ini 文件中的
Globle Name = true 参数注释调 #Globle Name = true
表、视图、触发器、序列、存储过程、包的创建
查询所有的表
select * from tab;
表 的 创 建 create table aa (a varchar2(10),
b number(8,2), c date
) tablespace users;
如果在创建用户时没有指定默认表空间,系统默认表空间为 System,在创建表时必须指定 tablespace;
约束条件
主键
alter table
aa
add constraint pk_aa primary key(a);
alter table
aa
drop primary key;
外键
alter table
aa
add constraint fk_aa_bb foreign key(a) references
bb(b);
alter table aa drop constraint fk_aa;
主键与外键的约束条件
视图简单视图
create or replace view v_a as
select * from aa;
联合视图
create or replace view v_ab(a ,b ) as select a1,a2 from aa
union
select b1,b2 from bb;
序列
create sequence seq_id start with 1000 increment by 1 nocache;
如果不加 nocache 参数,数据库每次创建一个 Session 时,系统默认取 20
的缓冲,如上次序列到达 10000 时,下次再进行连接时,序列从 10020 开始。
Select seq_id.nextval from dual; Select seq_id.currval from dual;
Drop sequence seq_id;
其他对象以后章节进行介绍
Trigger
您可能关注的文档
- mba联考中文写作模板().docx
- MBA系统功能说明书.docx
- MCS51单片机实验指导书.docx
- Media mi elements affecting brand equity A study of the Indian passenger car market分析和总结分析和总结.docx
- Message And Price Determination分析和总结分析和总结.docx
- MES系统操作说明书.docx
- Metabolic pathway identification and clearance Recommendations from the workshop for in vitro assays分析和总结分析和总结.docx
- MG40t门式起重机现场安装方案.docx
- midasCivil在桥梁承载能力检算及荷载试验中的应用(以CivilV2012为例).docx
- Minitabv1710安装方法分析和总结.docx
文档评论(0)