Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Oracle 10g r2 Response Files

Status
Not open for further replies.

mts79

Technical User
Apr 11, 2006
1
US
Hello All,

I have created a custom response file to do a software only install. The only things I would like to have installed are :
1. Oracle Database 10g 10.2.0.1.0
2. Oracle Enterprise Manager Console DB 10.2.0.1.0
3. Oracle Net Listener 10.2.0.1.0
4 Oracle OCI 10.2.0.1.0

My problem or question is when I run the custom response file that I just created and view the components that are going to be installed it all of the above checked BUT also checks Oracle Advanced Security and XML Development Kit. Could anyone tell my why those two are checked even though I had unchecked them during the creation of my response file??

Below is a sample of my response file where I clearly state the necessary dependancies:

INSTALL_TYPE="Custom"

#------------------------------------------------------------------------------
#Name : oracle.server:DEPENDENCY_LIST
#Datatype : StringList
#Description: List of products that you would like to install.
#
# The following choices are available. You may specify any
# combination of these choices. The components you choose should
# be specified in the form "<internal component name>:<version>"
# Below is a list of components you may specify to install.
#
# oracle.rdbms:10.2.0.1.0 - Oracle Database 10g
# oracle.options:10.2.0.1.0 - Enterprise Edition Options
# oracle.network:10.2.0.1.0 - Oracle Net Services
# oracle.sysman.console.db:10.2.0.1.0 - Database Control
# oracle.rdbms.oci:10.2.0.1.0 - Oracle Call Interface (OCI)
# oracle.precomp:10.2.0.1.0 - Oracle Programmer
# oracle.xdk:10.2.0.1.0 - Oracle XML Development Kit
# oracle.sqlplus.isqlplus:10.2.0.1.0 - iSQL*Plus
#
#Example : DEPENDENCY_LIST = {"oracle.rdbms:10.2.0.1.0"}
#------------------------------------------------------------------------------
oracle.server:DEPENDENCY_LIST={"oracle.rdbms:10.2.0.1.0","oracle.network:10.2.0.1.0","oracle.sysman.console.db:10.2.0.1.0","oracle.rdbms.oci:10.2.0.1.0"}

#------------------------------------------------------------------------------
#Name : oracle.options:DEPENDENCY_LIST
#Datatype : StringList
#Description: List of Enterprise Edition Options you would like to install.
#
# The following choices are available. You may specify any
# combination of these choices. The components you choose should
# be specified in the form "<internal component name>:<version>"
# Below is a list of components you may specify to install.
#
# oracle.network.aso:10.2.0.1.0 - Oracle Advanced Security
# oracle.rdbms.partitioning:10.2.0.1.0 - Oracle Partitioning
# oracle.sdo:10.2.0.1.0 - Oracle Spatial
# oracle.rdbms.lbac:10.2.0.1.0 - Oracle Label Security
# oracle.oraolap:10.2.0.1.0 - Oracle OLAP
# oracle.rdbms.dmse:10.2.0.1.0 - Oracle Data Mining Scoring Engine
#
#Example : DEPENDENCY_LIST = {"oracle.rdbms.partitioning:10.2.0.1.0"}
#------------------------------------------------------------------------------
oracle.options:DEPENDENCY_LIST={}

#------------------------------------------------------------------------------
#Name : oracle.network:DEPENDENCY_LIST
#Datatype : StringList
#Description: List of Oracle Net products you would like to install.
#
# The following choices are available. You may specify any
# combination of these choices. The components you choose should
# be specified in the form "<internal component name>:<version>"
# Below is a list of components you may specify to install.
#
# oracle.network.listener:10.2.0.1.0 - Oracle Net Listener
# oracle.network.cman:10.2.0.1.0 - Oracle Connection Manager
#
#Example: DEPENDENCY_LIST = {"oracle.network.listener:10.2.0.1.0"}
#------------------------------------------------------------------------------
oracle.network:DEPENDENCY_LIST={"oracle.network.listener:10.2.0.1.0"}


Thanks for the help!

Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top