转至繁体中文版     | 网站首页 | 图文教程 | 资源下载 | 站长博客 | 图片素材 | 武汉seo | 武汉网站优化 | 
最新公告:     敏韬网|教学资源学习资料永久免费分享站!  [mintao  2008年9月2日]        
您现在的位置: 学习笔记 >> 图文教程 >> 数据库 >> ORACLE >> 正文
提供一个Oracle901Client安装的ResponseFile         ★★★★

提供一个Oracle901Client安装的ResponseFile

作者:闵涛 文章来源:闵涛的学习笔记 点击数:1615 更新时间:2009/4/22 22:02:58

由于配置中带有版本号,所以每个应答文件只能支持相应版本的安装介质
主要是由于有版本不同将导致组件选取方面的错乱
使用该安装应答文件,掉过前面的窗口后直接显示组建定制窗口,以便再次确认的调整要安装的组件
安装中忽略安装进度界面,安装完成结束时只运行必要的配置

将以下内容存为responseFile,扩展名为.rps后即可用于安装Oracle Client,安装的组件有
  oracle.client 9.0.1.0.0
  ├1-Oracle Programmer 9.0.1.0.0
  │ ├Oracle Call Interface (OCI) 9.0.1.0.0
  │ ├Object Type Translator 9.0.1.0.0
  │ └Pro*C/C++ 9.0.1.0.0
  ├2-Oracle Enterprise Manager Products 9.0.1.0.0
  │ └Oracle Enterprise Manager Client 9.0.1.0.0
  ├3-Oracle Net Services 9.0.1.0.0
  │ └Oracle Net Protocol Support 9.0.1.0.0
  └4-Oracle Universal Installer 2.0.1.4.0
但其中的ORACLE_HOME和FROM_LOCATION、LOCATION_FOR_DISK2、LOCATION_FOR_DISK3、LOCATION_FOR_DISK4一定要设置为正确的路径。

#══════════════════════════════════════════════════════════════════════════#
# 应答文件开始
#══════════════════════════════════════════════════════════════════════════#

[General]
RESPONSEFILE_VERSION=1.7.0

[SESSION]
#Parameter: UNIX_GROUP_NAME
#Type: String
#Description: Unix group to be set for the inventory directory. Valid only in Unix platforms.
#Example : UNIX_GROUP_NAME = "install"
UNIX_GROUP_NAME=<Value Unspecified>

#Parameter: FROM_LOCATION
#Type: String
#Description: Complete path of the products.jar.
#Example : FROM_LOCATION = "../stage/products.jar"
FROM_LOCATION="/orainst/9201/Disk1/stage/products.jar"

#Parameter: FROM_LOCATION_CD_LABEL
#Type: String
#Description: This variable should only be used in multi-CD installations. It includes the label of the Compact Disk where the file "products.jar" exists. The label can be found in the file "disk.label" in the same directory as products.jar.
#Example : FROM_LOCATION_CD_LABEL = "CD Label"
FROM_LOCATION_CD_LABEL="Oracle920"

#Parameter: NEXT_SESSION_RESPONSE
#Type: String
#Description: Optionally specifies the full path of next session''''s response file. If only a file name is specified, the response file is retrieved from <TEMP>/oraInstall directory. This variable is only active if NEXT_SESSION is set to true.
#Example : NEXT_SESSION_RESPONSE = "nextinstall.rsp"
NEXT_SESSION_RESPONSE=<Value Unspecified>

#其他安装盘路径名
#Parameter: LOCATION_FOR_DISK2、LOCATION_FOR_DISK3、LOCATION_FOR_DISK4
#Type: String
#Description: Complete path to the other disks.
#Example : LOCATION_FOR_DISK2 = "../../Disk2"
LOCATION_FOR_DISK2="/orainst/9201/Disk2"
LOCATION_FOR_DISK3="/orainst/9201/Disk3"
LOCATION_FOR_DISK4="/orainst/9201/Disk4"

#Parameter: ORACLE_HOME
#Type: String
#Description: Complete Location of the Oracle Home.
#Example : ORACLE_HOME = "C:\Oracles"
ORACLE_HOME="/oracle/product/9.0.1"

#Parameter: ORACLE_HOME_NAME
#Type: String
#Description: Oracle Home Name. Used in creating folders, services.
#Example : ORACLE_HOME_NAME = "0RACLE_HOME"
ORACLE_HOME_NAME="0RACLE_HOME"

#Parameter: TOPLEVEL_COMPONENT
#Type: StringList
#Description: The Toplevel component that has to be installed in the current session.
#The following choices are available. The value should contain only one of these choices.
#The choices are of the form Internal Name, Version : External name. Please use the internal name and version while specifying the value.
#    oracle.server, 9.2.0.1.0 : Oracle9i Database 9.2.0.1.0
#    oracle.client, 9.2.0.1.0 : Oracle9i Client 9.2.0.1.0
#    oracle.infrastructure, 9.2.0.1.0 : Oracle9i Management and Integration 9.2.0.1.0
#Example : TOPLEVEL_COMPONENT = {"oracle.server","9.2.0.1.0"}
TOPLEVEL_COMPONENT={"oracle.client","9.2.0.1.0"}

#Parameter: DEINSTALL_LIST
#Type: StringList
#Description: List of components to be deinstalled during a deinstall session.
#The following choices are available. The value should contain only one of these choices.
#The choices are of the form Internal Name, Version : External name. Please use the internal name and version while specifying the value.
#    oracle.server, 9.2.0.1.0 : Oracle9i Database 9.2.0.1.0
#    oracle.client, 9.2.0.1.0 : Oracle9i Client 9.2.0.1.0
#    oracle.infrastructure, 9.2.0.1.0 : Oracle9i Management and Integration 9.2.0.1.0
#Example : DEINSTALL_LIST = {"oracle.server","9.2.0.1.0"}
DEINSTALL_LIST={"oracle.client","9.2.0.1.0"}

#Parameter: SHOW_SPLASH_SCREEN
#Type: Boolean
#Description: Set to true if the initial splash screen in the installer needs to be shown.
#Example : SHOW_SPLASH_SCREEN = true
SHOW_SPLASH_SCREEN=false

#Parameter: SHOW_WELCOME_PAGE
#Type: Boolean
#Description: Set to true if the Welcome page in the installer needs to be shown.
#Example : SHOW_WELCOME_PAGE = false
SHOW_WELCOME_PAGE=false

#Parameter: SHOW_COMPONENT_LOCATIONS_PAGE
#Type: Boolean
#Description: Set to true if the component locations page in the installer needs to be shown.
#This page only appears if there are products whose installed directory can be changed.
#If you set this to false you will prevent the user from being able to specify alternate directories.
#Example : SHOW_COMPONENT_LOCATIONS_PAGE = false
SHOW_COMPONENT_LOCATIONS_PAGE=false

#Parameter: SHOW_CUSTOM_TREE_PAGE
#Type: Boolean
#Description: Set to true if the custom tree page in the installer needs to be shown.
#In this page dependencies can be selected or unselected. This page appears only in a custom install type.
#Example : SHOW_CUSTOM_TREE_PAGE = false
SHOW_CUSTOM_TREE_PAGE=true

#Parameter: SHOW_SUMMARY_PAGE
#Type: Boolean
#Description: Set to true if the summary page in the installer needs to be shown.
#The summary page shows the list of components that will be installed in this session.
#Example : SHOW_SUMMARY_PAGE = true
SHOW_SUMMARY_PAGE=true

#Parameter: SHOW_INSTALL_PROGRESS_PAGE
#Type: Boolean
#Description: Set to true if the install progress page in the installer needs to be shown.
#This page shows the current status in the installation. The current status includes which product is being installed, which file is being copied.
#Example : SHOW_INSTALL_PROGRESS_PAGE = true
SHOW_INSTALL_PROGRESS_PAGE=false

#Parameter: SHOW_REQUIRED_CONFIG_TOOL_PAGE
#Type: Boolean
#Description: Set to true if the required config tools page in the installer needs to be shown.
#This page shows the list of required configuration tools that are part of this installation.
#It shows the status of each tool, including any failures with detailed information on why the tool has failed.
#Example : SHOW_REQUIRED_CONFIG_TOOL_PAGE = true
SHOW_REQUIRED_CONFIG_TOOL_PAGE=true

#Parameter: SHOW_OPTIONAL_CONFIG_TOOL_PAGE
#Type: Boolean
#Description: Set to true if the optional config tools page in the installer needs to be shown.
#This page shows the list of optional configuration tools that are part of this installation and are configured to launch automatically.
#It shows the status of each tool, including any failures with detailed information on why the tool has failed.
#Example : SHOW_OPTIONAL_CONFIG_TOOL_PAGE = true
SHOW_OPTIONAL_CONFIG_TOOL_PAGE=false

#Parameter: SHOW_RELEASE_NOTES
#Type: Boolean
#Description: Set to true if the release notes of this installation need to be shown at the end of installation.
#This dialog is launchable from the End of Installation page and shows the list of release notes available for the products just installed.
# This also requires the variable SHOW_END_SESSION_PAGE variable to be set to true.
#Example : SHOW_RELEASE_NOTES = true
SHOW_RELEASE_NOTES=false

#Parameter: SHOW_ROOTSH_CONFIRMATION
#Type: Boolean
#Description: Set to true if the Confirmation dialog asking to run the root.sh script in the installer needs to be shown.
#Valid only in Unix platforms.
#Example : SHOW_ROOTSH_CONFIRMATION = true
SHOW_ROOTSH_CONFIRMATION=true

#Parameter: SHOW_END_SESSION_PAGE
#Type: Boolean
#Description: Set to true if the end of session page in the installer needs to be shown.
#This page shows if the installation is successful or not.
#Example : SHOW_END_SESSION_PAGE = true
SHOW_END_SESSION_PAGE=true

#Parameter: SHOW_EXIT_CONFIRMATION
#Type: Boolean
#Description: Set to true if the confirmation when exiting the installer needs to be shown.
#Example : SHOW_EXIT_CONFIRMATION = true
SHOW_EXIT_CONFIRMATION=false

#Parameter: NEXT_SESSION
#Type: Boolean
#Description: Set to true to allow users to go back to the File Locations page for another installation. This flag also needs to be set to true in order to process another response file (see NEXT_SESSION_RESPONSE).
#Example : NEXT_SESSION = true
NEXT_SESSION=false

#Parameter: NEXT_SESSION_ON_FAIL
#Type: Boolean
#Description: Set to true to allow users to invoke another session even if current install session has failed. This flag is only relevant if NEXT_SESSION is set to true.
#Example : NEXT_SESSION_ON_FAIL = true
NEXT_SESSION_ON_FAIL=true

#Parameter: SHOW_DEINSTALL_CONFIRMATION
#Type: Boolean
#Description: Set to true if deinstall confimation is needed during a deinstall session.
#Example : SHOW_DEINSTALL_CONFIRMATION = true
SHOW_DEINSTALL_CONFIRMATION=true

#Parameter:

[1] [2]  下一页


[JAVA开发]WebLogic UDDI Client API 实例学习(二)  [JAVA开发]WebLogic UDDI Client API实例学习(一)
[SyBase]Open Client 对Borland C编译的支持  [SyBase]Open Client 应用程序结构
[SyBase]编写Open Client 应用程序的基本步骤  [SyBase]编写一个简单的Open Client 应用程序
[ORACLE]Install oracle client on Solaris  [ORACLE]提供一个Oracle9201Server安装的ResponseFile
[MySql]Linux CVS Server + jCVS-5.3.2 Client分布式开发…  [MySql]Linux CVS Server + jCVS-5.3.2 Client分布式开发…
教程录入:mintao    责任编辑:mintao 
  • 上一篇教程:

  • 下一篇教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
      注:本站部分文章源于互联网,版权归原作者所有!如有侵权,请原作者与本站联系,本站将立即删除! 本站文章除特别注明外均可转载,但需注明出处! [MinTao学以致用网]
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)

    同类栏目
    · Sql Server  · MySql
    · Access  · ORACLE
    · SyBase  · 其他
    更多内容
    热门推荐 更多内容
  • 没有教程
  • 赞助链接
    更多内容
    闵涛博文 更多关于武汉SEO的内容
    500 - 内部服务器错误。

    500 - 内部服务器错误。

    您查找的资源存在问题,因而无法显示。

    | 设为首页 |加入收藏 | 联系站长 | 友情链接 | 版权申明 | 广告服务
    MinTao学以致用网

    Copyright @ 2007-2012 敏韬网(敏而好学,文韬武略--MinTao.Net)(学习笔记) Inc All Rights Reserved.
    闵涛 投放广告、内容合作请Q我! E_mail:admin@mintao.net(欢迎提供学习资源)

    站长:MinTao ICP备案号:鄂ICP备11006601号-18

    闵涛站盟:医药大全-武穴网A打造BCD……
    咸宁网络警察报警平台