分享
 
 
 

八个学习点帮助你全面认识Oracle数据库

王朝oracle·作者佚名  2008-05-31
窄屏简体版  字體: |||超大  

TableSpace

表空间: 一个表空间对应多个数据文件(物理的dbf文件) 用语法方式创建tablespace,用sysdba登陆: --创建表空间mytabs,大小为10MB:

create tablespace mytabs datafile

'C:\Oracle\oradata\mydb\mytabs1.dbf' size 10M;

alter user zgl default tablespace mytabs;

--把tabs做为zgl的默认表空间。

grant unlimited tablespace to zgl;

--将操作表空间的权限给zgl。

Exception 示例:

create or replace procedure

pro_test_exception(vid in varchar2) is

userName varchar2(30);

begin

select name into userName from t_user where id=vid;

dbms_output.put_line(userName);

exception

when no_data_found then

dbms_output.put_line('没有查到数据!');

when too_many_rows then

dbms_output.put_line('返回了多行数据!');

end pro_test_exception;

安全治理

以下语句以sysdba登陆: 用户授权: alter user zgl account lock;--锁定帐号。 alter user zgl identified by zgl11;--修改用户密码。 alter user zgl account unlock;--解除帐号锁定。 alter user zgl default tablespace tt;--修改用户zgl的默认表空间为tt。 create user QQq identified by qqq123 default tablespace tt;--创建用户。

grant connect to qqq;--给qqq授予connect权限。 grant execute on zgl.proc01 to test;--将过程zgl.proc01授予用户test。 grant create user to zgl;--给zgl授予创建用户的权限。 revoke create user from zgl;--解除zgl创建用户的权限。

角色授权: create role myrole;--创建角色myrole grant connect to myrole;--给myrole授予connect权限 grant select on zgl.t_user to myrole;--把查询zgl.t_user的权限授予myrole grant myrole to test;--把角色myrole授予test用户

概要文件(配置文件): 全局设置,可以在概要文件中设置登陆次数,如超过这次数就锁定用户。

Synonym

创建同义词示例:

create public synonym xxx for myuser.t_user

create synonym t_user for myuser.t_user

select * from dba_synonyms where table_name='T_USER'

跨数据库查询

create database link dblinkzgl

connect to myuser identified by a using 'mydb'

Select * From t_user@dblinkzgl

course示例 示例1:

create or replace procedure pro_test_cursor is

userRow t_user%rowtype;

cursor userRows is

select * from t_user;

begin

for userRow in userRows loop

dbms_output.put_line

(userRow.Id','userRow.Name','userRows%rowcount);

end loop;

end pro_test_cursor;

示例2:

create or replace procedure

pro_test_cursor_oNerow(vid in number) is

userRow t_user%rowtype;

cursor userCur is

select * from t_user where id=vid;

begin

open userCur;

fetch userCur into userRow;

if userCur%FOUND then

dbms_output.put_line

(userRow.id','userRow.Name);

end if;

close userCur;

end pro_test_cursor_oneRow;

record示例

create or replace

procedure pro_test_record(vid in varchar2) is

type userRow is record(

id t_user.id%type,

name t_user.name%type

);

realRow userRow;

begin

select id,name into

realRow from t_user where id=vid;

dbms_output.put_line

(realRow.id','realRow.name);

end pro_test_record;

rowtype示例

create or replace procedure

pro_test_rowType(vid in varchar2) is

userRow t_user%Rowtype;

begin

select * into userRow from t_user where id=vid;

dbms_output.put_line

(userRow.id','userRow.name);

end pro_test_rowType;

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有