小編給大家分享一下Oracle如何實現(xiàn)用戶維護,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供隆回網(wǎng)站建設(shè)、隆回做網(wǎng)站、隆回網(wǎng)站設(shè)計、隆回網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、隆回企業(yè)網(wǎng)站模板建站服務(wù),10多年隆回做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
用戶維護
(1)創(chuàng)建用戶
CREATE USER suntx IDENTIFIED BY "suntx"
DEFAULT TABLESPACE "SUNTX"
TEMPORARY TABLESPACE "SUNTX_TEMP"
PROFILE DEFAULT
QUOTA UNLIMITED ON "SUNTX";
(2)給用戶賦權(quán)
2. 運行以下命令,對用戶賦權(quán);
grant execute on dbms_lock to suntx;
grant create any directory to suntx;
GRANT CONNECT TO suntx;
GRANT RESOURCE TO suntx;
create directory DUMP_DIR as '/app/sunline/db';
create directory BACKUP_DUMP_DIR as '/app1/backup/week/exp'
grant read,write on directory DUMP_DIR to suntx;
grant create synonym to suntx;
grant execute on dbms_lock to sunstg;
grant connect to SUNSTG;
grant resource to SUNSTG;
-- Grant/Revoke system privileges
grant create database link to SUNSTG;
grant create procedure to SUNSTG;
grant create sequence to SUNSTG;
grant create table to SUNSTG;
grant create trigger to SUNSTG;
grant create view to SUNSTG;
grant debug any procedure to SUNSTG;
grant debug connect session to SUNSTG;
grant create synonym to suntx;
grant unlimited tablespace to SUNSTG;
以上是“Oracle如何實現(xiàn)用戶維護”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!