默認(rèn)的:最高權(quán)限用戶:system密碼:manager管理員權(quán)限用戶:sys密碼:change_on_install普通用戶:scott密碼:tiger登陸管理員或超級(jí)管理員用戶可以自己建立屬于自己的用戶:
創(chuàng)新互聯(lián)建站是一家以網(wǎng)絡(luò)技術(shù)公司,為中小企業(yè)提供網(wǎng)站維護(hù)、成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、網(wǎng)站備案、服務(wù)器租用、域名申請(qǐng)、軟件開(kāi)發(fā)、微信平臺(tái)小程序開(kāi)發(fā)等企業(yè)互聯(lián)網(wǎng)相關(guān)業(yè)務(wù),是一家有著豐富的互聯(lián)網(wǎng)運(yùn)營(yíng)推廣經(jīng)驗(yàn)的科技公司,有著多年的網(wǎng)站建站經(jīng)驗(yàn),致力于幫助中小企業(yè)在互聯(lián)網(wǎng)讓打出自已的品牌和口碑,讓企業(yè)在互聯(lián)網(wǎng)上打開(kāi)一個(gè)面向全國(guó)乃至全球的業(yè)務(wù)窗口:建站溝通電話:18982081108
命令:createuseruserNameidentifiedbypassword;創(chuàng)建用戶名為:userName,密碼為password的用戶分配權(quán)限:grantdbatouserName;--授予DBA權(quán)限grantunlimitedtablespacetouserName;--授予不限制的表空間grantselectanytabletouserName;--授予查詢?nèi)魏伪韌rantselectanydictionarytouserName;--授予查詢?nèi)魏巫值?/p>
1、在電腦左下角開(kāi)始,運(yùn)行輸入cmd。
2、用dba登錄。
3、創(chuàng)建一個(gè)用戶并且使用命令:createuser用戶名為identifiedby。
4、給用戶解鎖:使用命令:用戶解鎖alteruser用戶名accountunlock。
5、給該用戶授權(quán):grantcreatesessionto用戶名。
Oracle中創(chuàng)建新的user, 也就相應(yīng)地創(chuàng)建了一個(gè)新的schema, 用來(lái)區(qū)別其他目錄的同時(shí), 還保存所有相關(guān)user的數(shù)據(jù)對(duì)象以及user的表。
How to create a new user? (create a new db)
首先用system(默認(rèn)密碼為manager)用戶登陸連接數(shù)據(jù)庫(kù).
The statement create user creates a user.
In the most simple form, the create user statement is one of the following three:
create user alfredo identified by alfredos_secret;
create user alfredo identified externally;
create user alfredo identified globally as 'external_name';
The first one creates a local user, the second one creates an external user while the last one creates global user.
How to create locked users?
A user can be created locked, that is, the user cannot connect to the database.
SQL create user alfredo identified by passw0rd account lock;
The user is now created, he can be granted some rights, for example the right to connect to the database:
SQL grant connect to alfredo;
Now, if the user tries to connect to the database, he will get ORA-28000:
SQL connect alfredo/passw0rd
ERROR:
ORA-28000: the account is locked
The user can now be unlocked with an alter user statement:
SQL alter user alfredo account unlock;
Which allows Alfredo to log on to the database now:
SQL connect alfredo/passw0rd
Connected.
1、我們?cè)赟ql Plus中,我們利用Create User關(guān)鍵字進(jìn)行用戶創(chuàng)建。
2、此時(shí),我們就可以在Create User后面,指定用戶名稱。
3、這時(shí)候,我們就可以在這里利用Indentified By關(guān)鍵字引導(dǎo)。
4、引導(dǎo)我們當(dāng)前新建的用戶指定與Test。
5、這時(shí)候,我們按下回車(chē),就可以看到我們新家你的Angela用戶成功創(chuàng)建。
6、這時(shí)候,我們就能對(duì)Dba_Users表進(jìn)行查詢是否創(chuàng)建成功。
默認(rèn)的:最高權(quán)限用戶:system 密碼:manager \x0d\x0a 管理員權(quán)限用戶:sys 密碼:change_on_install\x0d\x0a 普通用戶:scott 密碼:tiger \x0d\x0a登陸管理員或超級(jí)管理員用戶可以自己建立屬于自己的用戶 : \x0d\x0a命令:create user userName identified by password;\x0d\x0a創(chuàng)建用戶名為: userName, 密碼為 password 的用戶\x0d\x0a分配權(quán)限:\x0d\x0agrant dba to userName; --授予DBA權(quán)限\x0d\x0agrant unlimited tablespace to userName;--授予不限制的表空間\x0d\x0agrant select any table to userName; --授予查詢?nèi)魏伪韁x0d\x0agrant select any dictionary to userName;--授予 查詢 任何字典
1、在PLSQL里,用sys(oracle系統(tǒng)用戶)登陸,登陸的時(shí)候一定要選擇SYSDBA。普通用戶登陸選擇normal;
2、在左邊的菜單里找到Users節(jié)點(diǎn),右擊選擇添加功能。在打開(kāi)的界面里寫(xiě)上用戶名、密碼,默認(rèn)表空間如果已經(jīng)創(chuàng)建了表空間的話,選擇相應(yīng)的表空間,沒(méi)有的一般選擇users,臨時(shí)表空間一般選擇temp,概要文件選擇default即可;
3、對(duì)象權(quán)限無(wú)需添加;
4、角色權(quán)限選擇connect和resource,也可以選擇dba,這樣其他權(quán)限都不用給了,不過(guò)建議不要給dba權(quán)限,數(shù)據(jù)庫(kù)權(quán)限太大了,容易導(dǎo)致數(shù)據(jù)安全隱患角色權(quán)限選擇connect和resource即可。也可以選擇dba,這樣其他權(quán)限都不用給了,不過(guò)建議不要給dba權(quán)限,數(shù)據(jù)庫(kù)權(quán)限太大了,容易導(dǎo)致數(shù)據(jù)安全隱患;
5、系統(tǒng)權(quán)限選擇create any procedure、create any view、debug connect session、unlimited tablespace。debug connect session:調(diào)試存儲(chǔ)過(guò)程測(cè)試,根據(jù)具體的情況設(shè)定;
6、限額無(wú)需改動(dòng);
7、最后點(diǎn)擊應(yīng)用保存即可。