Oracle學習筆記(四)

來源:互聯網
上載者:User

一、控制使用者存取
1、建立修改使用者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、給使用者授予許可權
grant privilege[,privilege] to user [,user|role,public...]
一些系統許可權:
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表的許可權
grant select on tt1表 to user_1
給使用者user_1授予修改“表1”中(列1,列2)的許可權
grant update(列1,列2) on 表1 to user_1;
給使用者user_1 授予查詢許可權並可以把該許可權授予其他使用者的許可權
grant select
on tt1表
to user_1
with grant option
把許可權授予所有使用者
grant select
on 表1
to public;

給使用者user_1授權
grant create session to user_1;

二、建立角色並給角色授權
1、建立角色
create role mangager;
例如:create role test_role1;
2、給角色授權
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;

三、取消使用者權限
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取並集、交集、差集
所取的列的資料類型必須相容
1、取並集
union :會對資料排序,重複記錄壓縮,union all不會
select employee_id,job_id from employess
union
select employee_id,job_id from job_history;
取所有並集不去除重複資料
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去掉共同擁有的資料
select employee_id,job_id from employess
minus
select employee_id,job_id from job_history;

六、日期時間函數
求時差
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()

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.