Oracle中的使用者建立和許可權的分配

2021-08-29 13:18:03 字數 818 閱讀 3583

**:

1. 資料庫安裝時的引數設定

下面資料庫所用的版本為 oracle 9i ( 9.2.0 ) ,安裝資料庫時,資料庫系統會建立乙個資料庫例項,其中 : 安裝目錄選為 :\oracle ,資料庫名與資料庫 sid 號都輸入 :ora9i ,其中的字符集必須選為 :zhs16gbk( 否則以後進行跨平台操作時對中文的操作將比較困難 ) 。

2. 資料庫使用者的建立、許可權的分配

資料庫安裝完成後,有兩個系統級的使用者 :

1) system 預設密碼為 :manager

2) sys 預設密碼為 :change_on_install

在安裝的資料庫目錄中找到 \oracle\product\9.2\bin 中的 sqlplus 程式,執行 :./sqlplus system/manager@ora9i

用 system 使用者建立自己的使用者、許可權 ;sql 語句如下 :

1) 建立使用者 :

create user username identified by pwd default tablespace

users temporary tablespace temp;

2) 使用者授權

grant connect,resource,dba to business;

3) 提交

commit;

3. 用資料庫指令碼建立資料庫

如上面所述利用 sqlplus 以 username 使用者登陸,輸入 :@ 建立資料庫的指令碼名稱 .sql 回車,即可建立資料庫中的表、檢視、儲存過程等。

注 : 以上的建立使用者過程可以使使用者的表中沒有了系統自動產生的 n 多臨時表。

oracle學習使用者建立和許可權管理

一 建立使用者及許可權控制 1。create user ling identified by password 修改密碼 alter user ling identified by tiger 2.賦予許可權 登入許可權 grant create session to ling 使用表空間許可權 g...

oracle 資料庫使用者建立和許可權管理

create user user identified by password 建立完之後使用plsql登入會提示連線失敗,是因為沒有許可權導致的,將normal更改為sysdba,然後登入 建立完使用者以後,我們要賦予使用者許可權 sql命令為 grant privilege privilege....

Oracle建立使用者許可權

1.建立空間 create tablespace test datafile c oracle oradata orcl9 test.dbf size 50m default storage initial 500k next 500k minextents 1 maxextents unlimit...