安全管理
1.oracle的安全管理體系
oracle管理資料庫安全的特點
conn tt/tt11 連線資料庫
select user from dual;查詢當前帳號資訊
2.使用者管理
建立,修改使用者,使用者口令的維護,使用者的授權
開啟oracle的em,資料庫管理器。http://astarxp:5500/em
進入到使用者,建立使用者,然後輸入相關資訊。
概要檔案:通用設定,讓所對應的使用者來賦有相應的設定
測試使用者:在sqlplus:connect test/test222
這時候預設這個使用者沒有許可權建立表和select只有連線的許可權
grant select on scott.dept to text;把scott下的dept表的select許可權給test
sqlplus下操作使用者:
修改使用者預設表空間:alter user test default tablespae tt;
修改對應使用者的密碼:alter user test idenfified by test2222;
鎖定賬號:alter user test account lock; unlock解除
建立使用者:
create user q identified by pwd
default tablespace tt;
註冊許可權:grant connect to q;
grant select on scott.dept to test with grang option 物件授權
grant execute on tt.proc02 to test;
grant create user to test with admin option;系統授權
revoke select on scott.dept from test;解除對它的授權
revoke create user from test;
3.角色管理
角色的建立、授權
create role myrole;建立角色
grant select on tt.emp to myrole;給角色授權
grant select on tt.deptment to myrole;
grant myrole to test;把myrole角色給test.這時候test就有對應角色的許可權了
當然也oem管理器來實現:使用者,角色,概要檔案
開課第八天
開課第八天,今天因為遲到問題被老師訓了,呵呵,說實話是真的感覺前一周有點懶散鬆懈,今天被訓之後又感覺到了緊迫感,嗯,堅持就是勝利,加油。上午講題,下午講新知識,以下就是本寶寶吸收的新養料 方法 可以被稱作函式,也可以被稱作功能。1 main 是我們學習的第乙個簡單的方法,public static ...
彙編第八天
彙編形式目標 main proc push ebp mov ebp,esp 建立堆疊框架 push offset msg 匯入引數位址 call printf 呼叫函式 xor eax,eax 返回0 pop epb 扯掉框架 ret 0 返回主程式 main endp 結束 1.條件語句 cmp ...
前端第八天
迴圈繫結的變數汙染 在進行事件迴圈變數繫結時,由於函式體內部 並未執行,在繫結結束後,呼叫函式時,賦予的部分變數失去意義,解決方案 給頁面元素新增乙個任意屬性 事件與已有的函式進行繫結 只需要將函式位址繫結給事件,事件繫結完成將會有系統在特定情況下自動觸發 物件 字典 的增刪改查 物件元素格式為字串...