Oracle學習筆記(四)
一、控制用戶存取
1、創(chuàng)建修改用戶Creating Users
Create/alter user new_user identified by password;
例:create user user_1 indentified by pwd_1
alter user user_1 identified by pwd_2
2、給用戶授予權(quán)限
grant privilege[,privilege] to user [,user|role,public...]
一些系統(tǒng)權(quán)限:
create session/table/sequence/view/procedure
alter/delete/execute/index/insert/references/select/update
grant object_priv [(columns)]
on object
to {user|role|public}
[with grant option]
例如:
給用戶user_1授予查詢tt1表的權(quán)限
grant select on tt1表 to user_1
給用戶user_1授予修改“表1”中(列1,列2)的權(quán)限
grant update(列1,列2) on 表1 to user_1;
給用戶user_1 授予查詢權(quán)限并可以把該權(quán)限授予其他用戶的權(quán)限
grant select
on tt1表
to user_1
with grant option
把權(quán)限授予所有用戶
grant select
on 表1
to public;
給用戶user_1授權(quán)
grant create session to user_1;
二、創(chuàng)建角色并給角色授權(quán)
1、創(chuàng)建角色
create role mangager;
例如:create role test_role1;
2、給角色授權(quán)
grant create table,create view to manager;
例如:grant create table to test_role1;
3、把角色授予用戶
grant manager to user_1,user_2...
grant test_user1 to user_1;
三、取消用戶權(quán)限
revoke {privilege [,privilege...]|all}
on object
from {user[,user...]|role|public}
[cascade constraints];
revoke select on 表1 from user_1;
四、Database Links
create public database link hq.acme.com using 'sales';
select * from emp@hq.acme.com;
五、 oracle取并集、交集、差集
所取的列的數(shù)據(jù)類型必須兼容
1、取并集
union :會對數(shù)據(jù)排序,重復(fù)記錄壓縮,union all不會
select employee_id,job_id from employess
union
select employee_id,job_id from job_history;
取所有并集不去除重復(fù)數(shù)據(jù)
select employee_id,job_id from employess
union all
select employee_id,job_id from job_history;
2、取交集
select employee_id,job_id from employess
intersect
select employee_id,job_id from job_history;
3、差集
表employess去掉共同擁有的數(shù)據(jù)
select employee_id,job_id from employess
minus
select employee_id,job_id from job_history;
六、日期時間函數(shù)
求時差
select tz_offset('US/Eastern') from dual;
alter session set time_zone='-8:0';
select sessiontimezone,current_date from dual;
alter session set time_zone='-8:0';
select sessiontimezone,current_timestamp from dual;
alter session set time_zone='-8:0';
select current_timestamp,localtimestamp from dual;
select dbtimezone,sessiontimezone from dual;
select from_tz(timestamp'2000-03-23 08:00:00','3:00') from dual;
select to_timestamp('2000-02-01 11:00:00','YYYY-MM-DD HH:MI:SS')from dual;
select to_timestamp_tz('2000-02-01 11:00:00','YYYY-MM-DD HH:MI:SS TZH:TZM')from dual;
to_ymininterval()
相關(guān)文章
ORACLE中dbms_output.put_line輸出問題的解決過程
最近用dbms_output.put_line來輸出變量的一些信息,卻總是看不到結(jié)果,所以這篇文章主要給大家介紹了關(guān)于ORACLE中dbms_output.put_line輸出問題的解決過程,需要的朋友可以參考下2022-06-06
深入淺析mybatis oracle BLOB類型字段保存與讀取
本文給大家淺析mybatis oracle blob類型字段的保存與讀取,blob字段是指二進制大對象,用來存儲大量文本數(shù)據(jù)。感興趣的朋友一起學習吧2015-10-10
基于OGG實現(xiàn)Oracle實時同步MySQL的全過程
這篇文章詳細闡述了基于OGG實現(xiàn)Oracle實時同步MySQL全過程,文中通過圖文結(jié)合和代碼示例給大家講解的非常詳細,對大家的學習或工作有一定的幫助,需要的朋友可以參考下2023-11-11
講解Oracle數(shù)據(jù)庫中的數(shù)據(jù)字典及相關(guān)SQL查詢用法
這篇文章主要介紹了Oracle數(shù)據(jù)庫中的數(shù)據(jù)字典及相關(guān)SQL查詢用法,是Oracle入門學習中的基礎(chǔ)知識,需要的朋友可以參考下2016-03-03
[Oracle] Data Guard 之 淺析Switchover與Failover
以下是對Oracle中Switchover與Failover的使用進行了詳細的分析介紹,需要的朋友參考下2013-07-07

