Manual Oracle Uninstall

2023-10-17 03:18
文章标签 oracle manual uninstall

本文主要是介绍Manual Oracle Uninstall,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Manual Oracle Uninstall

手动卸载oracle

A number of people have contacted me regarding problems uninstalling Oracle products. The two methods listed below should only be used as a last resort and will remove *all* Oracle software allowing a re-install. If you make any mistakes they can be quite destructive so be careful.

  • Windows
  • UNIX

Windows

In the past I've had many problems uninstalling all Oracle products from Windows systems. Here's my last resort method:

在之前我已经windows 系统上卸载oracle时碰到了很多问题以下是我最新整理的一些方法:

  • Uninstall all Oracle components using the Oracle Universal Installer (OUI).
  • 使用oui来卸载搜有组件
  • Run regedit.exe and delete the HKEY_LOCAL_MACHINE/SOFTWARE/Oracle key. This contains registry entires for all Oracle products.
  • 命令行下运行  regedit,在注册表中删除     HKEY_LOCAL_MACHINE/SOFTWARE/Oracle   键。这里包含了oracle 产品所有的注册记录。
  • If you are running 64-bit Windows, you should also delete the HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Oracle key if it exists.
  • 64位的windows,需要删除    HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Oracle  (如果有的话)
  • Delete any references to Oracle services left behind in the following part of the registry (HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Ora*).
  • 删除所有与oracle 服务相关的记录,也就是 (HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Ora*). 遗留下来的记录

          It should be pretty obvious which ones relate to Oracle.

           记录内容应当与oracle紧密相关。

 

  • Reboot your machine.
  • 重启服务器
  • Delete the "C:\Oracle" directory, or whatever directory is your ORACLE_BASE.
  • 删除$oracle_home 下所有的目录
  • Delete the "C:\Program Files\Oracle" directory.
  • 删除 "C:\Program Files\Oracle 所有内容
  • If you are running 64-bit Wiindows, you should also delete the "C:\Program Files (x86)\Oracle" directory.
  • 如果是64位的系统,需要额外删除   C:\Program Files (x86)\Oracle
  • Empty the contents of your "C:\temp" directory.
  • 清空   C:\temp
  • Empty your recycle bin.
  • 清空回收站

At this point your machine will be as clean of Oracle components as it can be without a complete OS reinstall.

Remember, manually editing your registry can be very destructive and force an OS reinstall so only do it as a last resort.

手工编辑注册表是一项非常危险的操作。

If some DLLs can't be deleted, try renaming them, the after a reboot delete them.

如果某些ddls不能被删除,可以尝试重命名他们,或者重启后再去删除它们。

UNIX

Uninstalling all products from UNIX is a lot more consistent. If you do need to resort to a manual uninstall you should do something like:

  • Uninstall all Oracle components using the Oracle Universal Installer (OUI).
  • 使用oui卸载oracle组件
  • Stop any outstanding processes using the appropriate utilities.

  • 停掉所有与oracle相关的进程

    # oemctl stop oms user/password
    # agentctl stop
    # lsnrctl stop
    Alternatively you can kill them using the kill -9 pid command as the root user

          你也可以使用kill -9 pid 来杀进程。.

  • Delete the files and directories below the $ORACLE_HOME.

  • 删除 $ORACLE_HOME. 目录

  • # cd $ORACLE_HOME

  • # rm -Rf *

  • With the exception of the product directory, delete directories below the $ORACLE_BASE
  • .一些特殊情况下,删除$ORACLE_BASE
    # cd $ORACLE_BASE
    # rm -Rf admin doc jre o*
  • Delete the /etc/oratab file. If using 9iAS delete the /etc/emtab file also.
  • 删除 /etc/oratab 文件,如果使用了9iAS 还需删除 /etc/emtab
  • # rm /etc/oratab /etc/emtab

Hope this helps. Regards Tim...

这篇关于Manual Oracle Uninstall的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/222571

相关文章

Oracle查询优化之高效实现仅查询前10条记录的方法与实践

《Oracle查询优化之高效实现仅查询前10条记录的方法与实践》:本文主要介绍Oracle查询优化之高效实现仅查询前10条记录的相关资料,包括使用ROWNUM、ROW_NUMBER()函数、FET... 目录1. 使用 ROWNUM 查询2. 使用 ROW_NUMBER() 函数3. 使用 FETCH FI

数据库oracle用户密码过期查询及解决方案

《数据库oracle用户密码过期查询及解决方案》:本文主要介绍如何处理ORACLE数据库用户密码过期和修改密码期限的问题,包括创建用户、赋予权限、修改密码、解锁用户和设置密码期限,文中通过代码介绍... 目录前言一、创建用户、赋予权限、修改密码、解锁用户和设置期限二、查询用户密码期限和过期后的修改1.查询用

Oracle数据库使用 listagg去重删除重复数据的方法汇总

《Oracle数据库使用listagg去重删除重复数据的方法汇总》文章介绍了在Oracle数据库中使用LISTAGG和XMLAGG函数进行字符串聚合并去重的方法,包括去重聚合、使用XML解析和CLO... 目录案例表第一种:使用wm_concat() + distinct去重聚合第二种:使用listagg,

oracle中exists和not exists用法举例详解

《oracle中exists和notexists用法举例详解》:本文主要介绍oracle中exists和notexists用法的相关资料,EXISTS用于检测子查询是否返回任何行,而NOTE... 目录基本概念:举例语法pub_name总结 exists (sql 返回结果集为真)not exists (s

Oracle的to_date()函数详解

《Oracle的to_date()函数详解》Oracle的to_date()函数用于日期格式转换,需要注意Oracle中不区分大小写的MM和mm格式代码,应使用mi代替分钟,此外,Oracle还支持毫... 目录oracle的to_date()函数一.在使用Oracle的to_date函数来做日期转换二.日

oracle数据库索引失效的问题及解决

《oracle数据库索引失效的问题及解决》本文总结了在Oracle数据库中索引失效的一些常见场景,包括使用isnull、isnotnull、!=、、、函数处理、like前置%查询以及范围索引和等值索引... 目录oracle数据库索引失效问题场景环境索引失效情况及验证结论一结论二结论三结论四结论五总结ora

Oracle Expdp按条件导出指定表数据的方法实例

《OracleExpdp按条件导出指定表数据的方法实例》:本文主要介绍Oracle的expdp数据泵方式导出特定机构和时间范围的数据,并通过parfile文件进行条件限制和配置,文中通过代码介绍... 目录1.场景描述 2.方案分析3.实验验证 3.1 parfile文件3.2 expdp命令导出4.总结

Oracle数据库执行计划的查看与分析技巧

《Oracle数据库执行计划的查看与分析技巧》在Oracle数据库中,执行计划能够帮助我们深入了解SQL语句在数据库内部的执行细节,进而优化查询性能、提升系统效率,执行计划是Oracle数据库优化器为... 目录一、什么是执行计划二、查看执行计划的方法(一)使用 EXPLAIN PLAN 命令(二)通过 S

Oracle type (自定义类型的使用)

oracle - type   type定义: oracle中自定义数据类型 oracle中有基本的数据类型,如number,varchar2,date,numeric,float....但有时候我们需要特殊的格式, 如将name定义为(firstname,lastname)的形式,我们想把这个作为一个表的一列看待,这时候就要我们自己定义一个数据类型 格式 :create or repla

ORACLE 11g 创建数据库时 Enterprise Manager配置失败的解决办法 无法打开OEM的解决办法

在win7 64位系统下安装oracle11g,在使用Database configuration Assistant创建数据库时,在创建到85%的时候报错,错误如下: 解决办法: 在listener.ora中增加对BlueAeri-PC或ip地址的侦听,具体步骤如下: 1.启动Net Manager,在“监听程序”--Listener下添加一个地址,主机名写计