IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類|軟件專題|手機(jī)版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當(dāng)前所在位置: 首頁數(shù)據(jù)庫Oracle → oracle 權(quán)限管理入門

oracle 權(quán)限管理入門

時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)

  1.啟動監(jiān)聽:lsnrctl start

  2.啟動oracle實(shí)例:oradim -startup -sid orcl(oracle實(shí)例名)

  3.用戶登錄到oracle數(shù)據(jù)庫:sqlplus username/password

  4.dba(默認(rèn)是sys)登錄到數(shù)據(jù)庫:sqlplus username/password as sysdba? ,默認(rèn)的dba賬號和密碼可以是 sqlplus / as sysdba

  5.創(chuàng)建用戶:create user username identified by password(此時用戶已經(jīng)創(chuàng)建,但是不能登錄到oracle數(shù)據(jù)庫)

  6.授予用戶create session的權(quán)限:grant create session to username (此時用戶可以登錄數(shù)據(jù)庫,但是不能創(chuàng)建表)

  7.授予用戶創(chuàng)建table的權(quán)限:grant create table to username (此時的用戶理論上是可以創(chuàng)建表的,但是沒有權(quán)限使用表空間,所有依然不能成功創(chuàng)建表)

  8.授予用戶無限制的使用表空間的權(quán)限:grant unlimited tablespace to username

  9.撤銷權(quán)限:revoke 權(quán)限名 from username

  10.查詢當(dāng)前用戶所擁有的權(quán)限:select * from user_sys_privs

  11.查詢當(dāng)前用戶所擁有表的權(quán)限:select * from user_tab_privs

  12.查詢當(dāng)前用戶所擁有列的權(quán)限:select * from user_col_privs

  13.對象權(quán)限的授權(quán): grant 操作權(quán)限 on username.table to anotherusername(誰擁有這個對象權(quán)限就能授權(quán)給別人)

  14.對象權(quán)限的賒銷: revoke 操作權(quán)限 on username.table from anotherusername

  15.把某個權(quán)限(不分對象還是系統(tǒng)權(quán)限)授予給所有的用戶: grant 權(quán)限 to public

  16.把權(quán)限精確到列上面:grant 權(quán)限(columnName) on tableName to username ,注意查詢和刪除不能精確到列上面

關(guān)鍵詞標(biāo)簽:oracle,oracle 權(quán)限管

相關(guān)閱讀

文章評論
發(fā)表評論

熱門文章 Oracle中使用alter table來增加,刪除,修改列的語法 Oracle中使用alter table來增加,刪除,修改列的語法 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 誤刪Oracle數(shù)據(jù)庫實(shí)例的控制文件 誤刪Oracle數(shù)據(jù)庫實(shí)例的控制文件 為UNIX服務(wù)器設(shè)置Oracle全文檢索 為UNIX服務(wù)器設(shè)置Oracle全文檢索

相關(guān)下載

    人氣排行 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 Oracle中使用alter table來增加,刪除,修改列的語法 ORACLE SQL 判斷字符串是否為數(shù)字的語句 ORACLE和SQL語法區(qū)別歸納(1) oracle grant 授權(quán)語句 ORACLE修改IP地址后如何能夠使用 如何加速Oracle大批量數(shù)據(jù)處理 Oracle刪除表的幾種方法