在之前寫了一篇靜默安裝資料庫軟體的博文(此時也可以在reponse檔案中配置同時建立資料庫。資料庫安裝方式有很多,最常見的dbca圖形建庫,這也是網上介紹最多,優點是簡便,but,不適合裝逼;還有手工建庫,ofm建庫,以及dbca靜默建庫,在無法使用圖形建庫的時候,這種方式還是很方便的。
以下建立在資料庫軟體已經安裝的基礎之上,資料庫版本為oracle database 12c enterprise edition release 12.1.0.2.0 - 64bit。
1、通過dbca -help命令檢視命令引數
[oracle@localhost ~]$ dbca -help
dbca [-silent | -progressonly] {} | [-continueonnonfatalerrors ]
: -createdatabase | -configuredatabase | -createtemplatefromdb | -createclonetemplate | -generatescripts | -deletedatabase | -createpluggabledatabase | -unplugdatabase | -deletepluggabledatabase | -configurepluggabledatabase
enter "dbca --help" for more option
2、使用createdatabase命令建立乙個新的資料庫,執行dbca -createdatabase -help檢視createdatabase的可選引數
create a database by specifying the following parameters:
-createdatabase
-templatename [-clonetemplate]
-gdbname [-ignoreprereqs] [-sid ]
[-createascontainerdatabase ]
[-numberofpdbs ]
[-pdbname ]
[-pdbadminpassword ]
[-syspassword ]
[-systempassword ]
[-emconfiguration ]
-dbsnmppassword [-omshost -omsport -emuser -empassword -emexpressport ]]
[-dvconfiguration -dvuserpassword -dvaccountmanagername -dvaccountmanagerpassword ]
[-olsconfiguration [-datafiledestination |
[-redologfilesize ]
[-recoveryareadestination ]
[-datafilejarlocation ]
[-storagetype < fs | asm >
[-asmsnmppassword ]
-diskgroupname -recoverygroupname [-characterset ]
[-nationalcharacterset ]
[-registerwithdirservice -dirserviceusername -dirservicepassword -walletpassword ]
[-listeners ]
[-variablesfile ]]
[-variables ]
[-initparams ]
[-sampleschema ]
[-memorypercentage ]
[-automaticmemorymanagement ]
[-totalmemory ]
[-databasetype ]]
3、到此,執行靜默安裝的命令的基本模式:dbca -silent -createdatabase [database parameters...],選擇一部分必填引數,其他可以採用預設選項。示例:
dbca -silent -createdatabase -templatename $oracle_home/assistants/dbca/templates/general_purpose.dbc -gdbname orcogg -sid orcogg -createascontainerdatabase true -numberofpdbs 1 -pdbname pdbogg -pdbadminpassword wonderscd -syspassword wonderscd -systempassword wonderscd -datafiledestination /u01/data_files -characterset gbk16 -automaticmemorymanagement true
Linux下靜默安裝,公升級和刪除Oracle客戶端
有的時候不方便登陸linux的圖形介面安裝oracle客戶端,我們完全可以採用靜默模式安裝,公升級和刪除oracle客戶端 代替oui 平台 rhel4.5,oracle10.2.0.1 一 靜默方式安裝oracle客戶端 1 上傳oracle軟體,假如放在 orahome soft 目錄下 mkd...
Linux下靜默安裝,公升級和刪除Oracle客戶端
有的時候不方便登陸linux的圖形介面安裝oracle客戶端,我們完全可以採用靜默模式安裝,公升級和刪除oracle客戶端 代替oui 平台 rhel4.5,oracle10.2.0.1 一 靜默方式安裝oracle客戶端 1 上傳oracle軟體,假如放在 orahome soft 目錄下 mkd...
dbca靜默方式解除安裝資料庫
一 圖形介面刪除 我們可以通過影象介面刪除,用oracle使用者登入,在xshell裡面輸入dbca就可以調出圖形介面進行刪除。二 命令列模式靜默刪除 1 首先檢視dbca的幫助資訊 dbca help dbca silent progressonly customcreate continueon...