{"id":50267,"date":"2022-06-10T16:06:35","date_gmt":"2022-06-10T16:06:35","guid":{"rendered":"https:\/\/dbtut.com\/?p=50267"},"modified":"2022-06-10T16:08:12","modified_gmt":"2022-06-10T16:08:12","slug":"oracle-database-create-silent-mode","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/","title":{"rendered":"Oracle Database Create Silent Mode"},"content":{"rendered":"<p>In today&#8217;s article, I will explain the topic of Oracle Database Create Silent Mode.<\/p>\n<p>The other day, when I made a connection to create a simple database on AIX, I couldn&#8217;t run the GUI interface, and because there was no time, I completed the operations from the command system in order not to strain too much.<\/p>\n<p>I share it for your benefit;<\/p>\n<p>First of all, we create a file named createbd.rsp under \u201d $ORACLE_HOME\/assistants\/dbca \u201d.<\/p>\n<p>Its content will be as follows, You need to edit the required fields. If you search for the word \u201d SHINING \u201d, you will automatically reach the fields you need to edit.<\/p>\n<p>After this file is created, just give the following command on the command line.<\/p>\n<pre class=\"lang:default decode:true \"># dbca -silent -createDatabase -responseFile createdb.rsp\r\n\r\n<\/pre>\n<p>After that, instance and db will be created automatically.<\/p>\n<pre class=\"lang:default decode:true \">############################################################################## DATABASE CREATE START\r\n## ##\r\n## DBCA response file ##\r\n## \u2014\u2014\u2014\u2014\u2014\u2014 ##\r\n## Copyright 1998, 2011, Oracle Corporation. All Rights Reserved. ##\r\n## ##\r\n## Specify values for the variables listed below to customize Oracle ##\r\n## Database Configuration installation. ##\r\n## ##\r\n## Each variable is associated with a comment. The comment identifies the ##\r\n## variable type. ##\r\n## ##\r\n## Please specify the values in the following format : ##\r\n## Type : Example ##\r\n## String : \u201c&lt;value&gt;\u201d ##\r\n## Boolean : True or False ##\r\n## Number : &lt;numeric value&gt; ##\r\n## StringList : {\u201c&lt;value1&gt;\u201d,\u201d&lt;value2&gt;\u201d} ##\r\n## ##\r\n## Examples : ##\r\n## 1. dbca -progress_only -responseFile &lt;response file&gt; ##\r\n## Display a progress bar depicting progress of database creation ##\r\n## process. ##\r\n## ##\r\n## 2. dbca -silent -responseFile &lt;response file&gt; ##\r\n## Creates database silently. No user interface is displayed. ##\r\n## ##\r\n## 3. dbca -silent -createDatabase -cloneTemplate ##\r\n## -responseFile &lt;response file&gt; ##\r\n## Creates database silently with clone template. The template in ##\r\n## responsefile is a clone template. ##\r\n## ##\r\n## 4. dbca -silent -deleteDatabase -responseFile &lt;response file&gt; ##\r\n## Deletes database silently. ##\r\n##############################################################################\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# GENERAL section is required for all types of database creations.\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n[GENERAL]\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : RESPONSEFILE_VERSION\r\n# Datatype : String\r\n# Description : Version of the database to create\r\n# Valid values : \u201c11.1.0\u201d\r\n# Default value : None\r\n# Mandatory : Yes\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014-\r\nRESPONSEFILE_VERSION = \u201c10.2.0\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : OPERATION_TYPE\r\n# Datatype : String\r\n# Description : Type of operation\r\n# Valid values : \u201ccreateDatabase\u201d \\ \u201ccreateTemplateFromDB\u201d \\ \u201ccreateCloneTemplate\u201d \\ \u201cdeleteDatabase\u201d \\ \u201cconfigureDatabase\u201d \\ \u201caddInstance\u201d (RAC-only) \\ \u201cdeleteInstance\u201d (RAC-only)\r\n# Default value : None\r\n# Mandatory : Yes\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nOPERATION_TYPE = \u201ccreateDatabase\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013*** End of GENERAL section ***\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# CREATEDATABASE section is used when OPERATION_TYPE is defined as \u201ccreateDatabase\u201d.\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n[CREATEDATABASE]\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : GDBNAME\r\n# Datatype : String\r\n# Description : Global database name of the database\r\n# Valid values : &lt;db_name&gt;.&lt;db_domain&gt; \u2013 when database domain isn\u2019t NULL\r\n# &lt;db_name&gt; \u2013 when database domain is NULL\r\n# Default value : None\r\n# Mandatory : Yes\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nGDBNAME = \u201cBPARLAYAN\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : RACONENODE\r\n# Datatype : Boolean\r\n# Description : Set to true for RAC One Node database\r\n# Valid values : TRUE\\FALSE\r\n# Default value : FALSE\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#RACONENODE = \u201cfalse\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : RACONENODESERVICENAME\r\n# Datatype : String\r\n# Description : Service is required by application to connect to RAC One\r\n# Node Database\r\n# Valid values : Service Name\r\n# Default value : None\r\n# Mandatory : No [required in case RACONENODE flag is set to true] #\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#RACONENODESERVICENAME =\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : POLICYMANAGED\r\n# Datatype : Boolean\r\n# Description : Set to true if Database is policy managed and\r\n# set to false if Database is admin managed\r\n# Valid values : TRUE\\FALSE\r\n# Default value : FALSE\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#POLICYMANAGED = \u201cfalse\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : CREATESERVERPOOL\r\n# Datatype : Boolean\r\n# Description : Set to true if new server pool need to be created for database\r\n# if this option is specified then the newly created database\r\n# will use this newly created serverpool.\r\n# Multiple serverpoolname can not be specified for database\r\n# Valid values : TRUE\\FALSE\r\n# Default value : FALSE\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#CREATESERVERPOOL = \u201cfalse\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : FORCE\r\n# Datatype : Boolean\r\n# Description : Set to true if new server pool need to be created by force\r\n# if this option is specified then the newly created serverpool\r\n# will be assigned server even if no free servers are available.\r\n# This may affect already running database.\r\n# This flag can be specified for Admin managed as well as policy managed db.\r\n# Valid values : TRUE\\FALSE\r\n# Default value : FALSE\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#FORCE = \u201cfalse\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : SERVERPOOLNAME\r\n# Datatype : String\r\n# Description : Only one serverpool name need to be specified\r\n# if Create Server Pool option is specified.\r\n# Comma-separated list of Serverpool names if db need to use\r\n# multiple Server pool\r\n# Valid values : ServerPool name\r\n# Default value : None\r\n# Mandatory : No [required in case of RAC service centric database] #\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#SERVERPOOLNAME =\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : CARDINALITY\r\n# Datatype : Number\r\n# Description : Specify Cardinality for create server pool operation\r\n# Valid values : any positive Integer value\r\n# Default value : Number of qualified nodes on cluster\r\n# Mandatory : No [Required when a new serverpool need to be created] #\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#CARDINALITY =\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : SID\r\n# Datatype : String\r\n# Description : System identifier (SID) of the database\r\n# Valid values : Check Oracle11g Administrator\u2019s Guide\r\n# Default value : &lt;db_name&gt; specified in GDBNAME\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nSID = \u201cBPARLAYAN\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : NODELIST\r\n# Datatype : String\r\n# Description : Comma-separated list of cluster nodes\r\n# Valid values : Cluster node names\r\n# Default value : None\r\n# Mandatory : No (Yes for RAC database-centric database )\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#NODELIST=\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : TEMPLATENAME\r\n# Datatype : String\r\n# Description : Name of the template\r\n# Valid values : Template file name\r\n# Default value : None\r\n# Mandatory : Yes\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nTEMPLATENAME = \u201cGeneral_Purpose.dbc\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : OBFUSCATEDPASSWORDS\r\n# Datatype : Boolean\r\n# Description : Set to true if passwords are encrypted\r\n# Valid values : TRUE\\FALSE\r\n# Default value : FALSE\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#OBFUSCATEDPASSWORDS = FALSE\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : SYSPASSWORD\r\n# Datatype : String\r\n# Description : Password for SYS user\r\n# Valid values : Check Oracle11g Administrator\u2019s Guide\r\n# Default value : None\r\n# Mandatory : Yes\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nSYSPASSWORD = \u201cBPARLAYAN\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : SYSTEMPASSWORD\r\n# Datatype : String\r\n# Description : Password for SYSTEM user\r\n# Valid values : Check Oracle11g Administrator\u2019s Guide\r\n# Default value : None\r\n# Mandatory : Yes\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nSYSTEMPASSWORD = \u201cBPARLAYAN\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : EMCONFIGURATION\r\n# Datatype : String\r\n# Description : Enterprise Manager Configuration Type\r\n# Valid values : CENTRAL|LOCAL|ALL|NONE\r\n# Default value : NONE\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nEMCONFIGURATION = \u201cLOCAL\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DISABLESECURITYCONFIGURATION\r\n# Datatype : String\r\n# Description : Database Security Settings\r\n# Valid values : ALL|NONE|AUDIT|PASSWORD_PROFILE\r\n# Default value : NONE\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nDISABLESECURITYCONFIGURATION = \u201cPASSWORD_PROFILE\u201d\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : SYSMANPASSWORD\r\n# Datatype : String\r\n# Description : Password for SYSMAN user\r\n# Valid values : Check Oracle11g Administrator\u2019s Guide\r\n# Default value : None\r\n# Mandatory : Yes, if LOCAL specified for EMCONFIGURATION\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nSYSMANPASSWORD = \u201cBPARLAYAN\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DBSNMPPASSWORD\r\n# Datatype : String\r\n# Description : Password for DBSNMP user\r\n# Valid values : Check Oracle11g Administrator\u2019s Guide\r\n# Default value : None\r\n# Mandatory : Yes, if EMCONFIGURATION is specified\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nDBSNMPPASSWORD = \u201cBPARLAYAN\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : CENTRALAGENT\r\n# Datatype : String\r\n# Description : Grid Control Central Agent Oracle Home\r\n# Default value : None\r\n# Mandatory : Yes, if CENTRAL is specified for EMCONFIGURATION\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#CENTRALAGENT =\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : HOSTUSERNAME\r\n# Datatype : String\r\n# Description : Host user name for EM backup job\r\n# Default value : None\r\n# Mandatory : Yes, if ALL is specified for EMCONFIGURATION\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#HOSTUSERNAME =\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : HOSTUSERPASSWORD\r\n# Datatype : String\r\n# Description : Host user password for EM backup job\r\n# Default value : None\r\n# Mandatory : Yes, if ALL is specified for EMCONFIGURATION\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#HOSTUSERPASSWORD=\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : BACKUPSCHEDULE\r\n# Datatype : String\r\n# Description : Daily backup schedule in the form of hh:mm\r\n# Default value : 2:00\r\n# Mandatory : Yes, if ALL is specified for EMCONFIGURATION\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#BACKUPSCHEDULE=\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DVOWNERNAME\r\n# Datatype : String\r\n# Description : DataVault Owner\r\n# Valid values : Check Oracle11g Administrator\u2019s Guide\r\n# Default value : None\r\n# Mandatory : Yes, if DataVault option is chosen\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#DVOWNERNAME = \u201c\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DVOWNERPASSWORD\r\n# Datatype : String\r\n# Description : Password for DataVault Owner\r\n# Valid values : Check Oracle11g Administrator\u2019s Guide\r\n# Default value : None\r\n# Mandatory : Yes, if DataVault option is chosen\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#DVOWNERPASSWORD = \u201c\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DVACCOUNTMANAGERNAME\r\n# Datatype : String\r\n# Description : DataVault Account Manager\r\n# Valid values : Check Oracle11g Administrator\u2019s Guide\r\n# Default value : None\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#DVACCOUNTMANAGERNAME = \u201c\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DVACCOUNTMANAGERPASSWORD\r\n# Datatype : String\r\n# Description : Password for DataVault Account Manager\r\n# Valid values : Check Oracle11g Administrator\u2019s Guide\r\n# Default value : None\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#DVACCOUNTMANAGERPASSWORD = \u201c\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DATAFILEJARLOCATION\r\n# Datatype : String\r\n# Description : Location of the data file jar\r\n# Valid values : Directory containing compressed datafile jar\r\n# Default value : None\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#DATAFILEJARLOCATION =\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DATAFILEDESTINATION\r\n# Datatype : String\r\n# Description : Location of the data file\u2019s\r\n# Valid values : Directory for all the database files\r\n# Default value : $ORACLE_BASE\/oradata\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#DATAFILEDESTINATION = \/oracle10g\/oradata\/\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : RECOVERYAREADESTINATION\r\n# Datatype : String\r\n# Description : Location of the data file\u2019s\r\n# Valid values : Recovery Area location\r\n# Default value : $ORACLE_BASE\/flash_recovery_area\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#RECOVERYAREADESTINATION=\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : STORAGETYPE\r\n# Datatype : String\r\n# Description : Specifies the storage on which the database is to be created\r\n# Valid values : FS (CFS for RAC), ASM\r\n# Default value : FS\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#STORAGETYPE=FS\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DISKGROUPNAME\r\n# Datatype : String\r\n# Description : Specifies the disk group name for the storage\r\n# Default value : DATA\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#DISKGROUPNAME=DATA\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : ASMSNMP_PASSWORD\r\n# Datatype : String\r\n# Description : Password for ASM Monitoring\r\n# Default value : None\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#ASMSNMP_PASSWORD=\u201d\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : RECOVERYGROUPNAME\r\n# Datatype : String\r\n# Description : Specifies the disk group name for the recovery area\r\n# Default value : RECOVERY\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#RECOVERYGROUPNAME=RECOVERY\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : CHARACTERSET\r\n# Datatype : String\r\n# Description : Character set of the database\r\n# Valid values : Check Oracle11g National Language Support Guide\r\n# Default value : \u201cUS7ASCII\u201d\r\n# Mandatory : NO\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#CHARACTERSET = \u201cWE8ISO8859P9\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : NATIONALCHARACTERSET\r\n# Datatype : String\r\n# Description : National Character set of the database\r\n# Valid values : \u201cUTF8\u201d or \u201cAL16UTF16\u201d. For details, check Oracle11g National Language Support Guide\r\n# Default value : \u201cUTF8\u201d\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nNATIONALCHARACTERSET= \u201cUTF8\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : REGISTERWITHDIRSERVICE\r\n# Datatype : Boolean\r\n# Description : Specifies whether to register with Directory Service.\r\n# Valid values : TRUE \\ FALSE\r\n# Default value : FALSE\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#REGISTERWITHDIRSERVICE= TRUE\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DIRSERVICEUSERNAME\r\n# Datatype : String\r\n# Description : Specifies the name of the directory service user\r\n# Mandatory : YES, if the value of registerWithDirService is TRUE\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#DIRSERVICEUSERNAME= \u201cname\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DIRSERVICEPASSWORD\r\n# Datatype : String\r\n# Description : The password of the directory service user.\r\n# You can also specify the password at the command prompt instead of here.\r\n# Mandatory : YES, if the value of registerWithDirService is TRUE\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#DIRSERVICEPASSWORD= \u201cpassword\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : WALLETPASSWORD\r\n# Datatype : String\r\n# Description : The password for wallet to created or modified.\r\n# You can also specify the password at the command prompt instead of here.\r\n# Mandatory : YES, if the value of registerWithDirService is TRUE\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#WALLETPASSWORD= \u201cpassword\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : LISTENERS\r\n# Datatype : String\r\n# Description : Specifies list of listeners to register the database with.\r\n# By default the database is configured for all the listeners specified in the\r\n# $ORACLE_HOME\/network\/admin\/listener.ora\r\n# Valid values : The list should be space separated names like \u201clistener1 listener2\u201d.\r\n# Mandatory : NO\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nLISTENERS = \u201cBPARLAYAN\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : VARIABLESFILE\r\n# Datatype : String\r\n# Description : Location of the file containing variable value pair\r\n# Valid values : A valid file-system file. The variable value pair format in this file\r\n# is &lt;variable&gt;=&lt;value&gt;. Each pair should be in a new line.\r\n# Default value : None\r\n# Mandatory : NO\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#VARIABLESFILE =\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : VARIABLES\r\n# Datatype : String\r\n# Description : comma separated list of name=value pairs. Overrides variables defined in variablefile and templates\r\n# Default value : None\r\n# Mandatory : NO\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#VARIABLES =\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : INITPARAMS\r\n# Datatype : String\r\n# Description : comma separated list of name=value pairs. Overrides initialization parameters defined in templates\r\n# Default value : None\r\n# Mandatory : NO\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#INITPARAMS =\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : SAMPLESCHEMA\r\n# Datatype : Boolean\r\n# Description : Specifies whether or not to add the Sample Schemas to your database\r\n# Valid values : TRUE \\ FALSE\r\n# Default value : FASLE\r\n# Mandatory : No\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#SAMPLESCHEMA=TRUE\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : MEMORYPERCENTAGE\r\n# Datatype : String\r\n# Description : percentage of physical memory for Oracle\r\n# Default value : None\r\n# Mandatory : NO\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nMEMORYPERCENTAGE = \u201c40\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : DATABASETYPE\r\n# Datatype : String\r\n# Description : used for memory distribution when MEMORYPERCENTAGE specified\r\n# Valid values : MULTIPURPOSE|DATA_WAREHOUSING|OLTP\r\n# Default value : MULTIPURPOSE\r\n# Mandatory : NO\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#DATABASETYPE = \u201cMULTIPURPOSE\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : AUTOMATICMEMORYMANAGEMENT\r\n# Datatype : Boolean\r\n# Description : flag to indicate Automatic Memory Management is used\r\n# Valid values : TRUE\/FALSE\r\n# Default value : TRUE\r\n# Mandatory : NO\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\nAUTOMATICMEMORYMANAGEMENT = \u201cTRUE\u201d\r\n\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n# Name : TOTALMEMORY\r\n# Datatype : String\r\n# Description : total memory in MB to allocate to Oracle\r\n# Valid values :\r\n# Default value :\r\n# Mandatory : NO\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\r\n#TOTALMEMORY = \u201c800\u201d\r\n#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013*** End of CREATEDATABASE section ***\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_50267\" class=\"pvc_stats all  \" data-element-id=\"50267\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In today&#8217;s article, I will explain the topic of Oracle Database Create Silent Mode. The other day, when I made a connection to create a simple database on AIX, I couldn&#8217;t run the GUI interface, and because there was no time, I completed the operations from the command system in order not to strain too &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_50267\" class=\"pvc_stats all  \" data-element-id=\"50267\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":574,"featured_media":50274,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-50267","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-oracle"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Oracle Database Create Silent Mode - Database Tutorials<\/title>\n<meta name=\"description\" content=\"I will explain the topic of Oracle Database Create Silent Mode. The other day, when I made a connection to create a simple database on AIX\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle Database Create Silent Mode - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"I will explain the topic of Oracle Database Create Silent Mode. The other day, when I made a connection to create a simple database on AIX\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-10T16:06:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-10T16:08:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/06\/Ekran-goruntusu-2022-06-10-190524.png\" \/>\n\t<meta property=\"og:image:width\" content=\"736\" \/>\n\t<meta property=\"og:image:height\" content=\"348\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Bu\u011fra PARLAYAN\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bu\u011fra PARLAYAN\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/\"},\"author\":{\"name\":\"Bu\u011fra PARLAYAN\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/f07abb2de370d35d6c93e90d8eb2b9f2\"},\"headline\":\"Oracle Database Create Silent Mode\",\"datePublished\":\"2022-06-10T16:06:35+00:00\",\"dateModified\":\"2022-06-10T16:08:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/\"},\"wordCount\":137,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/06\/Ekran-goruntusu-2022-06-10-190524.png\",\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/\",\"name\":\"Oracle Database Create Silent Mode - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/06\/Ekran-goruntusu-2022-06-10-190524.png\",\"datePublished\":\"2022-06-10T16:06:35+00:00\",\"dateModified\":\"2022-06-10T16:08:12+00:00\",\"description\":\"I will explain the topic of Oracle Database Create Silent Mode. The other day, when I made a connection to create a simple database on AIX\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/06\/Ekran-goruntusu-2022-06-10-190524.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/06\/Ekran-goruntusu-2022-06-10-190524.png\",\"width\":736,\"height\":348},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle Database Create Silent Mode\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/f07abb2de370d35d6c93e90d8eb2b9f2\",\"name\":\"Bu\u011fra PARLAYAN\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8fe63334d745f00f79f9f47b870aa143dd0f7615580c741a3b078aa4d09fa071?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8fe63334d745f00f79f9f47b870aa143dd0f7615580c741a3b078aa4d09fa071?s=96&d=mm&r=g\",\"caption\":\"Bu\u011fra PARLAYAN\"},\"description\":\"Burgra Parlayan is an experienced Database and Weblogic Administrator. After completing his technical \/ relevant training he has got involved with a serious amount of projects. He successfully managed database upgrade, database migration, database performance tuning projects for various public institutions.Currently he has been employed by one of the leading financial institutions called Turkiye Hayat &amp; Emeklilik as responsible administrator for Oracle Database and Oracle Middleware. He has been sharing his experience and knowledge by face to face training, personal blog and various social networking accounts to support the Oracle ecosystem continuously since 2010.\",\"sameAs\":[\"http:\/\/www.bugraparlayan.com.tr\/\"],\"url\":\"https:\/\/dbtut.com\/index.php\/author\/bugraparlayan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle Database Create Silent Mode - Database Tutorials","description":"I will explain the topic of Oracle Database Create Silent Mode. The other day, when I made a connection to create a simple database on AIX","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/","og_locale":"en_US","og_type":"article","og_title":"Oracle Database Create Silent Mode - Database Tutorials","og_description":"I will explain the topic of Oracle Database Create Silent Mode. The other day, when I made a connection to create a simple database on AIX","og_url":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/","og_site_name":"Database Tutorials","article_published_time":"2022-06-10T16:06:35+00:00","article_modified_time":"2022-06-10T16:08:12+00:00","og_image":[{"width":736,"height":348,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/06\/Ekran-goruntusu-2022-06-10-190524.png","type":"image\/png"}],"author":"Bu\u011fra PARLAYAN","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Bu\u011fra PARLAYAN","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/"},"author":{"name":"Bu\u011fra PARLAYAN","@id":"https:\/\/dbtut.com\/#\/schema\/person\/f07abb2de370d35d6c93e90d8eb2b9f2"},"headline":"Oracle Database Create Silent Mode","datePublished":"2022-06-10T16:06:35+00:00","dateModified":"2022-06-10T16:08:12+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/"},"wordCount":137,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/06\/Ekran-goruntusu-2022-06-10-190524.png","articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/","url":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/","name":"Oracle Database Create Silent Mode - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/06\/Ekran-goruntusu-2022-06-10-190524.png","datePublished":"2022-06-10T16:06:35+00:00","dateModified":"2022-06-10T16:08:12+00:00","description":"I will explain the topic of Oracle Database Create Silent Mode. The other day, when I made a connection to create a simple database on AIX","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/06\/Ekran-goruntusu-2022-06-10-190524.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/06\/Ekran-goruntusu-2022-06-10-190524.png","width":736,"height":348},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2022\/06\/10\/oracle-database-create-silent-mode\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Oracle Database Create Silent Mode"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/f07abb2de370d35d6c93e90d8eb2b9f2","name":"Bu\u011fra PARLAYAN","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8fe63334d745f00f79f9f47b870aa143dd0f7615580c741a3b078aa4d09fa071?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8fe63334d745f00f79f9f47b870aa143dd0f7615580c741a3b078aa4d09fa071?s=96&d=mm&r=g","caption":"Bu\u011fra PARLAYAN"},"description":"Burgra Parlayan is an experienced Database and Weblogic Administrator. After completing his technical \/ relevant training he has got involved with a serious amount of projects. He successfully managed database upgrade, database migration, database performance tuning projects for various public institutions.Currently he has been employed by one of the leading financial institutions called Turkiye Hayat &amp; Emeklilik as responsible administrator for Oracle Database and Oracle Middleware. He has been sharing his experience and knowledge by face to face training, personal blog and various social networking accounts to support the Oracle ecosystem continuously since 2010.","sameAs":["http:\/\/www.bugraparlayan.com.tr\/"],"url":"https:\/\/dbtut.com\/index.php\/author\/bugraparlayan\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/50267","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/574"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=50267"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/50267\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/50274"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=50267"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=50267"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=50267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}