oracle資料庫安裝完之後如何建立使用者

時間 2021-08-11 18:15:23

1樓:匿名使用者

在安裝的時候有預設使用者的system,sys都是系統使用者你可以用他們登陸

sys chang_on_installsystem manager

分別是使用者名稱和密碼

2樓:匿名使用者

預設的:最高許可權使用者:system 密碼:manager

管理員許可權使用者:sys 密碼:change_on_install

普通使用者:scott 密碼:tiger

登陸管理員或超級管理員使用者可以自己建立屬於自己的使用者 :

命令:create user username identified by password;

建立使用者名稱為: username, 密碼為 password 的使用者

分配許可權:

grant dba to username; --授予dba許可權

grant unlimited tablespace to username;--授予不限制的表空間

grant select any table to username; --授予查詢任何表

grant select any dictionary to username;--授予 查詢 任何字典

3樓:匿名使用者

關鍵要以管理員的身份登入 才能建立使用者

4樓:匿名使用者

create user

oracle中如何資料庫,oracle中如何新建一個資料庫

oracle裡面不叫資料庫了,叫建立一個名稱空間建立表空間的語法是 create tablespace tablespacenamedatafile filename size integer k m autoextend off on 建立使用者 create user scce identifi...

sql資料庫和oracle資料庫哪個好

兄弟,聽我的。肯定學習oracle。原因 1 oracle是商用的最廣泛的關係型資料庫管理系統,廣泛應用於銀行 電信 電力 社保等各個領域。特別是對於unix和linux平臺,sqlserver怎麼用啊?我想你學習,肯定為了將來應用,或者工作,你的簡歷裡面寫oracle和sqlserver完全是不一...

oracle資料庫備份語句

exp 畢竟也需要連線到資料庫,也就是需要提供使用者名稱,密碼,所以你說的資料庫模式匯出,是無法正常實現的。但是使用dba使用者登陸,可以實現匯出整個資料庫的類似功能。資料庫模式 exp system passwd oracle full y file db081222.dmp log db0812...