Oracle使用者建立、許可權分配

來源:互聯網
上載者:User

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多暫存資料表。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.