Downloaded software from http://www.oracle.com/technology/software/products/database/index.html
File name is win32_11gR1_database_1013.zip
Unzipped it and navigated to find setup.exe at win32_11gR1_database_1013\database\
Selected "Advanced Installation" --> "Enterprise Edition"
Then specified the ORACLE_BASE and ORACLE_HOME locations...note by default the directory structure on windows for ORACLE_BASE is :\app\ and for ORACLE_HOME :\app\\product\11.1.0\db_1
When we select to create the starter (seed) database, we get a screen to configure it:
Under automatic memory management, from 11g onwards we dont have to specify sga_target and pga_aggregate_target separately. We just have to specify, how much amount of memory we want to allocate to that instance (SGA+PGA). Minimum is 256M. You can see that when you select "Enable automatic memory management" , memory for SGA and PGA is specified as AUTO. That means Oracle will decide how much memory to be allocated to these 2 memory components. When you deselect "Enable automatic memory management" you can see how much memory is actually allocated for these components. We will talk about memory_target parameter later in detail.
Under Security tab, you can disable the security settings. These security settings include enabling auditing and using a new default password profile.
You can select database character set(default, unicode, list of charactersets). I selected unicode.
You can enable "Oracle Configuraion Manager", this is to link your env with metalink so that the diagnostic data is collected and stored on metalink. (I did not select it)
.......Installation started.........
Global inventory: C:\program files\Oracle\Inventory
Local Inventory: $ORACLE_HOME\inventory
Received a warning from DBCA saying "Enterprise manager configuration failed due to following error - listener is not up. Start the listener and run EM configuration assistant again.
Clicked OK and the installation and db creation completed.
Next article we will discuss about the "EMCA warning" and how to resolve it?