Oracle學(xué)習(xí)筆記(四)
一、控制用戶存取
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 :會(huì)對(duì)數(shù)據(jù)排序,重復(fù)記錄壓縮,union all不會(huì)
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í)間函數(shù)
求時(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 創(chuàng)建監(jiān)控賬戶 提高工作效率
有很多Oracle服務(wù)器,需要天天查看TableSpace,比較麻煩了。2009-10-10Oracle數(shù)據(jù)庫的字段約束創(chuàng)建和維護(hù)示例
本篇文章主要介紹了Oracle數(shù)據(jù)庫的字段約束創(chuàng)建和維護(hù)示例,可以創(chuàng)建,添加,刪除等約束,感興趣的小伙伴們可以參考一下。2017-04-04Oracle 數(shù)據(jù)庫導(dǎo)出(exp)導(dǎo)入(imp)說明
exp 將數(shù)據(jù)庫內(nèi)的各對(duì)象以二進(jìn)制方式下載成dmp文件,方便數(shù)據(jù)遷移。2009-02-02Oracle與Mysql主鍵、索引及分頁的區(qū)別小結(jié)
Oracle與Mysql主鍵、索引及分頁的區(qū)別,學(xué)習(xí)oracle的朋友可以參考下2013-02-02Oracle 批處理自動(dòng)備份bat腳本語句的步驟詳解
這篇文章主要介紹了Oracle 批處理自動(dòng)備份bat腳本語句的步驟詳解,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2021-01-01