HK AAHK項目實施手冊-was85+oracle11g集群布署13

如上圖所示,直接點擊下一步

這裡要注意:數據字符集,一定要按如上截圖的字符集來創建資料庫實例,否則資料庫數據實例恢復時會報錯,會影晌數據導入成功率。

 

 

資料庫創建完成

 

查看實例啟動情況:

 

 

 

九、    創建數據實例表空間

在windows CMD字元命令界面執行以下語句:

 

–創建用戶和表空間

 

–系統管理員登錄新建資料庫 wizbankAAHK

–系統管理員登錄新建資料庫

sqlplus system/WizBank1314@wizbankaahk

–創建表空間

create tablespace LMS

    datafile ‘D:\app\Administrator\oradata\wizbankaahk/TS_LMS_data01.DBF’ size 1024m

    default storage (

        initial 200k

        next 200k

        minextents 1

        maxextents unlimited

        pctincrease 0)

online;

 

 

create tablespace LMS_DATA

    datafile ‘D:\app\Administrator\oradata\wizbankaahk/TS_LMS_DATA_data01.DBF’ size 1024m

    default storage (

        initial 200k

        next 200k

        minextents 1

        maxextents unlimited

        pctincrease 0)

online;

 

 

create tablespace LMS_IND

    datafile ‘D:\app\Administrator\oradata\wizbankaahk/TS_LMS_ind01.DBF’ size 256m

    default storage (

        initial 200k

        next 200k

        minextents 1

        maxextents unlimited

        pctincrease 0)

online;

 

 

 

create temporary tablespace LMS_TMP

    tempfile ‘D:\app\Administrator\oradata\wizbankaahk/TS_LMS_tmp01.DBF’ size 256M;

 

 

–新建用戶及表空間授權    

create user LMS identified by “WizBank1314”

    default tablespace LMS

    temporary tablespace LMS_TMP

    quota unlimited on LMS;

    

GRANT connect, resource, alter session TO LMS;

備註:D:\app\Administrator\oradata\wizbankAAHK 為實際的ORACEL實例安裝路徑。

以下文章點擊率最高

Loading…

     

如果這文章對你有幫助,請掃左上角微信支付-支付寶,給於打賞,以助博客運營