OCP课程学习二

使用DDL语句创建和管理表
  • 创建表对象
  • 约束条件的创建和管理
  • 修改表
  • 删除表
创建一个简单表
create table dept1(
deptno  number(2),
dname  varchar2(10),
loc  varchar2(10));
desc dept; 注意desc只能在命令窗口中执行

create table dept2(
deptno int,
dname char(10),
loc char(10),
create_time date default sysdate);
insert into dept2 values(10,'sal','sh',default);
select * from dept2;
select   length(dname)  from dept1 where dname = 'sal';   3
select   length(dname)  from dept2 where dname= 'sal';    10
比较char和varchar的区别
修改表
create table test5(id int,name char(10));
insert into test5 values(1,'hanfei');
select * from test5;
alter table test5 add(sex  varchar(10)) 添加 
alter table test5 rename colum sex to xingbie  修改列名为xingbie
alter table test5 drop colum xingbie;   删除xingbie的这一列
alter table test5 rename to ts5; 重命名这个列为ts5
select table_name from user_tables;   查看所有的表 
alter table ts5 read only # 只读表
alter table ts5 read write; 读和写
insert into ts5 values(2,'shanghai');
drop table ts5; 删除表
创建其他方案对象
  • 创建视图
  • 创建,维护和使用序列
  • 创建和维护索引
  • 创建同义词
grant create view to scott,hr;  创建视图
alter user soctt identified by oracle_4U 
conn  scott/oracle_4U;
create table empcopy as select * from emp;  创建一个表
create view empv as select ename,sal from empcopy; 创建一个视图
select * from empv;  可以看出来只有两列
create view empv1 as select ename xingming, sal gongzi from empcopy;  使用别名创建视图
select * from empv1 ; 可以看到 两列都是xingming 和gongzi 
insert into empv1 values('hanfei',5000)   视图中添加一个行
select * from empcopy;  可以看到新增的已经加上去了
拒绝DML操作 
create view empv2 as select ename,sal from empcopy with read only;
insert into empv2 values('hanfei',5000) 会报错,只有读的权限 
drop view empv2 ; 删除视图
#创建序列 
create sequence dept_deptno_seq
create table deptcopy as select * from dept;
insert into deptcopy(deptno,dname) values(dept_deptno_seq.nextval,'TEACH')
select * from deptcopy;
select  dept_deptno_seq.currval from dual;
select dept_deptno_seq.nextval from dual;
alter sequence dept_deptno_seq 
increment by 20 
nocache 
nocycle 
select dept_deptno_seq.currval from dual;
insert into deptcopy(deptno,dname) values(dept_deptno_seq.nextval,'TEACH1');
select * from deptcopy;  查询表
drop sequence dept_deptno_seq;  删除索引
#创建和管理索引
create index dept_deptno_idx on deptcopy(deptno); #创建索引
drop index dept_deptno_idx; #删除索引
#创建和管理同义词
conn / as sysdba
grant create synonym to scott,hr;
create cynonym dept_syn for dept;
select * from dept_syn;
create public synonym dept_syn1 for scott.dept;
select * from dept1_syn1;
conn scott / oracle_4U 
select * from dept_syn1;
drop synonym dept_syn;

管理数据库存储结构

sqlplus / as sysdba 
startup 
set linesize 200;
set pagesize 100;
#确定技术文件和临时文件的名称和大小
select name,bytes from v$datafile union all select name,bytes from v$tempfile;
create tablespace newts1 datefile  '/u01/app/oracle/oradata/orcl/newts01.dbf'  size  20m  autoallocate;  
create tablespace newts2  datafile  '/u01/app/oracle/oradata/orcl/newts02.dbf' size 20M  uniform size 128k   
create tablespace newts3  datafile '/u01/app/oracle/oradata/hf1/newts03.dbf'  size  20M  autoextend on next 2M maxsize 50M ;
create tablespace newts4 datafile '/u01/app/oracle/oradata/hf1/newts04.dbf'  size  20M reuse uniform segment space management auto;
#查看表空间
select tablespace_name,block_size,max_size from dba_tablespaces;
select file_name,file_id,bytes,status from dba_data_files;
select tablespace_name,bytes from dba_free_sapce;
#管理表空间
select tablespace_name,status from dba_tablespaces;
select tablespace_name,status from dba_tablespaces;
#重新调整表空间大小 
alter database datafile  '/u01/app/oracle/oradata/orcl/newts04.dbf'  resize 100M;
#删除表空间 
drop tablespace newts1 including cotents and datafiles; 

管理用户安全性

  • 创建和管理用户账户
  • 身份认证方式
  • 授权和撤销权限
  • 创建和管理配置文件
select username,user_id,account_status from dba_users;
create user hanfei identified by 123;
create user 'hanfei' identified by 123;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,294评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,780评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,001评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,593评论 1 289
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,687评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,679评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,667评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,426评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,872评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,180评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,346评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,019评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,658评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,268评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,495评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,275评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,207评论 2 352

推荐阅读更多精彩内容