Oracle 第六天 建立使用者,表空間,授權

2021-09-01 10:02:27 字數 1538 閱讀 6902

建立臨時表空間,在oracle11g的安裝目錄新建了個orcl目錄

create temporary tablespace test_temp

size 32m

autoextend on

next 32m maxsize 2048m

extent management local;

建立使用者表空間

create tablespace test_data

logging

size 32m

autoextend on

next 32m maxsize 2048m

extent management local;

建立使用者並制定表空間

create user username identified by password

default tablespace test_data

temporary tablespace test_temp;

給使用者授予許可權

grant

create session, create any table, create any view ,create any index, create any procedure,

alter any table, alter any procedure,

drop any table, drop any view, drop any index, drop any procedure,

select any table, insert any table, update any table, delete any table

to username;

將role這個角色授與username,也就是說,使username這個使用者可以管理和使用role所擁有的資源

grant role to username; 例如 grant dba to username;

檢視所有角色

select * from dba_roles;

---------------------------檢視使用者許可權-----------------------

檢視所有使用者

select * from dba_users;

select * from all_users;

select * from user_users;

檢視使用者系統許可權

select * from dba_sys_privs;

select * from user_sys_privs;

檢視使用者物件或角色許可權

select * from dba_tab_privs;

select * from all_tab_privs;

select * from user_tab_privs;

檢視所有角色

select * from dba_roles;

檢視使用者或角色所擁有的角色

select * from dba_role_privs;

select * from user_role_privs;

第六天 風氣

第六天 風氣 答 人有了,就得定規矩,否則就是一幫烏合之眾,而不是團隊。1必須朝九晚五。嚴格控制員工手裡有辦公室鑰匙。下班必須準時鎖門,員工準時離開。斷公司外網。要加班必須上級主管簽字,更不准在辦公室留宿,洗澡。這一條很重要,不要讓程式設計師活得像個浪子,精神恍惚,口中神叨,鬍子拉碴,這都是浮動工作...

開課第六天

今天是開課第六天,老師上午沒有講課,講了一上午的題,下午又講了新知識,如下 1 順序結構 從上到下順序進行。2 分支結構 if boolean表示式 else switch 值 case 值 break case 值 break switch 執行流程,switch的值和case的值一一比較,如果一...

第六天學習

變數的作用域 區域性變數 在函式內部定義的變數,這個變數只能在函式內部使用,在全域性當中不能使用。使用就報錯了。全域性變數 在函式外部定義的變數,這個變數可以在全域性使用。但是我們一般不推薦使用全域性變數 因為可能會意外的修改掉變數的值。迫不得已不要用全域性變數 衝突處理原則 就近原則。而不是從上到...