====== 4 - DBCA en mode silent ======
* Log DBCA
$ORACLE_BASE/cfgtoollogs/dbca/[SID]/trace[...].log
tail -f /u01/app/oracle/cfgtoollogs/dbca/DB1RAC1/trace.log_2025-09-16_12-18-46PM
(Personnaliser les MDP)
* NON CDB
dbca -silent -createDatabase -templateName General_Purpose.dbc \
-gdbName DB1RAC1 \
-sid DB1RAC1 \
-SysPassword xxxxxx \
-SystemPassword xxxxxx \
-asmSysPassword xxxxxx \
-emConfiguration NONE \
-redoLogFileSize 512 \
-storageType ASM \
-useOMF true \
-recoveryAreaDestination +FRA \
-recoveryAreaSize 10240 \
-diskGroupName +DATA \
-characterSet AL32UTF8 \
-automaticMemoryManagement false \
-totalMemory 2536 \
-databaseType MULTIPURPOSE \
-databaseConfigType RAC \
-nodelist oracle2,oracle3
* CDB
dbca -silent -createDatabase -templateName General_Purpose.dbc \
-gdbName CDB1RAC1 \
-sid CDB1RAC1 \
-createAsContainerDatabase true \
-numberOfPDBs 1 \
-pdbName PDBRAC1 \
-pdbAdminPassword xxxxxx \
-SysPassword xxxxxx \
-SystemPassword xxxxxx \
-asmSysPassword xxxxxx \
-emConfiguration NONE \
-redoLogFileSize 512 \
-storageType ASM \
-useOMF true \
-recoveryAreaDestination +FRA \
-recoveryAreaSize 10240 \
-diskGroupName +DATA \
-characterSet AL32UTF8 \
-automaticMemoryManagement false \
-totalMemory 2536 \
-databaseType MULTIPURPOSE \
-databaseConfigType RAC \
-nodelist oracle2,oracle3