Oracle 8i在P4上的安装

 更新时间:2007年03月06日 00:00:00   作者:  
正在看的ORACLE教程是:Oracle 8i在P4上的安装。 方法一:

1、将ORACLE软件拷贝到硬盘。
2、将 硬盘目录文件\stage\Components\oracle.swd.jre\1.1.7.30/1
\DataFiles\Expanded\jre\win32\bin\symcjit.dll 的文件改名为
symcjit.old
3.从\install\win32 目录下运行SETUP.exe 文件进行安装。

前提是:机器上没有装过Oracle产品。如有的话请先卸载,再将注册表中Oracle项删除。


方法二、(此方法斑竹成功安装,但较麻烦,方法的核心是加 -nojit)
.. Copy only the install directory from the CD to the hard disk ,say, e:\temp.

b. Open oraparam.ini and make the following modifications (Assuming CD
drive is f:)

* Change the "SOURCE=" line to use the full path to the CD instead of a
relative path. (i.e., SOURCE=f:\stage\products.jar)

* Change the "JRE_LOCATION" line to use the full path to the CD instead of a
relative path. (i.e.,
JRE_LOCATION=f:\stage\Components\oracle\swd\jre\1.1.7\1\DataFiles\Expanded)

* Change the "OUI_LOCATION" line to use the full path to the CD instead of a
relative path. (i.e.,
OUI_LOCATION=f:\stage\Components\oracle\swd\oui\1.6.0.9.0\1\DataFiles\Expanded

* Change the "JRE_MEMORY_OPTIONS" line to add "-nojit" as the first argument.
(i.e., JRE_MEMORY_OPTIONS=-nojit -ms16m -mx32m)
^^^^^^
* Other entries should remain the same

c. Launch setup.exe from the temporary location on your hard drive (i.e.
e:\temp\install\win32\setup.exe). This will use the modified
oraparam.ini and pick up the information from the CD since the absolute
locations are specified.

Choose a Custom install and choose not to create a database during the
install. This way, the Database Configuration Assistant will not be launched
during installation.

The Net8 Configuration Assistant will still be launched, and there is no way
to suppress it. You will need to kill the Net8 Configuration Assistant if it
hangs due to the bug. The installation still will have been successful, and
you can run the DBCA and NetCA after installation.

To kill NetCA if it hangs during installation:
In the "Configuration Tools" window, highlight the "Net8 Configuration
Assistant" and click "Stop". If that does not work, look for the most recent
JRE process using the Task Manager, and kill it manually. NOTE: the OUI
itself will also have a jre process. Be sure to kill the one with the most
recent date, which should be the jre process being used for Net8CA, not the
one for OUI itself.

After killing the configuration tools and continuing through the installation
to the "End of Installation" screen, you should modify the configuration tools
to use "-nojit", then call the appropriate tools from the Start Menu.

Once installation is complete, each of the following files in the ORACLE_HOME
needs to be modified:

assistants\dbca\dbassist.cl
assistants\dbma\dbmig.cl
assistants\ifa\ifa.cl
bin\elogin.cl
bin\owm.cl
ldap\oidamdin\oidadmin.cl
network\tools\netasst.cl
network\tools\netca.cl
owm\install\instelogin.cl
owm\install\instowm.cl

Edit the contents of the above files to add "-nojit" as shown below:
Command=("C:\Program Files\Oracle\jre\1.1.7\BIN\JREW" -nojit -classpath ....
this is the only thing you need to add --> ^^^^^^

方法三:
升级oracle带的jre。
<

相关文章

  • oracle重置序列从0开始递增1

    oracle重置序列从0开始递增1

    这篇文章介绍了oracle重置序列的方法,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-02-02
  • oralce和db2兼容开发注意事项

    oralce和db2兼容开发注意事项

    这篇文章主要介绍了oralce和db2兼容开发注意事项的相关资料,这里整理了几个重要问题及如何解决,需要的朋友可以参考下
    2016-11-11
  • Oracle如何实现把B表某一字段更新到A表

    Oracle如何实现把B表某一字段更新到A表

    这篇文章主要给大家介绍了关于Oracle如何实现把B表某一字段更新到A表的相关资料,在Oracle中使用一个表的字段来更新另一个表的字段,可以采用UPDATE SELECT语句,文中给出了详细的代码示例,需要的朋友可以参考下
    2023-07-07
  • oracle与mysql的视频教程下载地址分享

    oracle与mysql的视频教程下载地址分享

    这是某培训机构的oracle跟mysql视频教程,现在分享给大家,想要学习mysql和oracle的同学不要错过哦
    2013-03-03
  • Oracle 查询语句限制只选择最前面几行和最后面几行的实现方式

    Oracle 查询语句限制只选择最前面几行和最后面几行的实现方式

    在Oracle中,可以使用 ROWNUM 关键字来限制查询结果的行数,这篇文章主要介绍了Oracle 查询语句限制只选择最前面几行和最后面几行的实现方式,需要的朋友可以参考下
    2023-12-12
  • Oracle Portal及其门户网站开发概述

    Oracle Portal及其门户网站开发概述

    Oracle Portal及其门户网站开发概述...
    2007-03-03
  • 全面解析Oracle Procedure 基本语法

    全面解析Oracle Procedure 基本语法

    这篇文章主要介绍了Oracle Procedure 知识,包括oracle的存储过程注意事项方面的内容,非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2017-02-02
  • 使用oracle发生标识符无效问题及解决

    使用oracle发生标识符无效问题及解决

    这篇文章主要介绍了使用oracle发生标识符无效问题及解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-07-07
  • oracle数据库锁表的原因及解决方法

    oracle数据库锁表的原因及解决方法

    出现锁表的情况很多种,但是大部分情况都是更新表,然后并没有提交,导致数据库的表被锁的情况,处理方式也比较简单,本文小编给大家介绍了oracle数据库锁表的原因及解决方法,需要的朋友可以参考下
    2023-11-11
  • oracle11数据库安装图文教程

    oracle11数据库安装图文教程

    这篇文章主要为大家详细介绍了oracle11数据库安装图文教程,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-02-02

最新评论