【配置安裝】Oracle靜默建庫for 12c&19c CDB

恩強Boy發表於2020-12-26

Oracle 靜默建庫 for 12c&19c CDB

12c&19c 在靜默建庫對比 11g ,有變化的引數主要是建立 CDP 。其他地方變化不大。做一遍,踩踩坑。

使用靜默dbca 建立資料庫有兩種方法:

1 )一種是根據 oracle 自身的資料庫模板建立資料庫(建議),資料庫模板位置 $ORACLE_HOME/assistants/dbca/templates/*.dbc

ORACLE 為我們提供了幾個 dbc 模板:

Data Warehouse 資料倉儲

Transaction Processing 事務處理

General Purpose 一般用途

2) 另一種是根據模板檔案

該模板檔案位於oracle 解壓目錄下 database/response/ dbca.rsp 檔案, 當然我們也可以透過複製這個模板檔案來修改其中的內容來建立定製的資料庫

本文以第一種方法舉例。 注意在使用dbca 命令的時候各個同級別的引數的必要性,有些是必要的,有些是不必要的。具體可參考 dbca -help 。靜默模式使用 dbca 建立資料庫,在執行過程中不存在互動資訊,所有的資訊、錯誤和告警都會寫在日誌裡。在結果時螢幕會列印出日誌的位置。

建庫指令碼如下:

$ dbca -silent -createDatabase -templateName /u01/app/oracle/product/1 9 . 3 .0/db_1/assistants/dbca/templates/General_Purpose.dbc   -responseFile NO_VALUE   -gdbName prod   -sid prod   -createAsContainerDatabase TRUE   -numberOfPDBs 2 -pdbName pdb   -pdbAdminPassword  oracle -sysPassword oracle -systemPassword oracle -redoLogFileSize 50 -storageType FS  -datafileDestination   '/u01/app/oracle/oradata/prod' -enableArchive true -archiveLogDest '/archivelog' -sampleSchema false -characterset ZHS16GBK -nationalCharacterSet AL16UTF16   -emConfiguration NONE   -automaticMemoryManagement false -totalMemory 2048 -databaseType OLTP  

[WARNING] [DBT-06208] The 'SYS' password entered does not conform to the Oracle recommended standards.

   CAUSE:

a. Oracle recommends that the password entered should be at least 8 characters in length, contain at least 1 uppercase character, 1 lower case character and 1 digit [0-9].

b.The password entered is a keyword that Oracle does not recommend to be used as password

   ACTION: Specify a strong password. If required refer Oracle documentation for guidelines.

[WARNING] [DBT-06208] The 'SYSTEM' password entered does not conform to the Oracle recommended standards.

   CAUSE:

a. Oracle recommends that the password entered should be at least 8 characters in length, contain at least 1 uppercase character, 1 lower case character and 1 digit [0-9].

b.The password entered is a keyword that Oracle does not recommend to be used as password

   ACTION: Specify a strong password. If required refer Oracle documentation for guidelines.

[WARNING] [DBT-06208] The 'PDBADMIN' password entered does not conform to the Oracle recommended standards.

   CAUSE:

a. Oracle recommends that the password entered should be at least 8 characters in length, contain at least 1 uppercase character, 1 lower case character and 1 digit [0-9].

b.The password entered is a keyword that Oracle does not recommend to be used as password

   ACTION: Specify a strong password. If required refer Oracle documentation for guidelines.

Prepare for db operation

8% complete

Copying database files

31% complete

Creating and starting Oracle instance

32% complete

36% complete

40% complete

43% complete

46% complete

Completing Database Creation

51% complete

53% complete

54% complete

Creating Pluggable Databases

58% complete

63% complete

77% complete

Executing Post Configuration Actions

100% complete

Database creation complete. For details check the logfiles at:

 /u01/app/oracle/cfgtoollogs/dbca/prod.

Database Information:

Global Database Name:prod

System Identifier(SID):prod

Look at the log file "/u01/app/oracle/cfgtoollogs/dbca/prod/prod0.log" for further details.

 

引數解釋如下:

-silent: 靜默模式

-templateName: 指定資料庫建立模板位置

-responseFile : 是否使用響應檔案

-gdbName: global database name

-sid: 指定資料庫 SID system identifier

- createAsContainerDatabase : 是否建立 CDB true 為建立 CDB

-numberOfPDBs : 建立 PDB 的數量

-pdbName : PDB 名字,如果建立多個 PDB ,該名字為字首名

-pdbAdminPassword : PDB 管理員密碼

- sysPassword : sys 使用者密碼

-systemPassword : system 使用者密碼

-redoLogFileSize : 指定 redo 日誌大小

- storageType : 儲存型別: FS 為檔案系統, ASM ASM 磁碟形式,如果使用 ASM 儲存,還需要指定 -diskGroupName -recoveryGroupName

-datafileDestination : 資料檔案路徑

-enableArchive: 是否啟用歸檔

-archiveLogDest: 歸檔路徑

-sampleSchema : 是否建立用例模板

-characterset : 指定字符集

-nationalCharacterSet : 指定國家字符集

-emConfiguration : 是否建立 em

-automaticMemoryManagement   是否啟動 AMM true 代表啟動 AMM,false 代表啟動 ASMM

- totalMemory : 指定例項佔用記憶體大小, PGA SGA 會自動分配

-databaseType : 可選 MULTIPURPOSE|DATA_WAREHOUSING|OLTP

 

 

---- end ----

 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31529886/viewspace-2745586/,如需轉載,請註明出處,否則將追究法律責任。

相關文章