Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I do a manual uninstall of Oracle?

Tags:

Sometimes my Oracle database on Windows gets hosed. How do I do a manual uninstall of Oracle?

like image 709
Joshua Avatar asked Sep 17 '08 14:09

Joshua


People also ask

How do I manually uninstall Oracle 10g?

6.3. Start Oracle Universal Installer: From the Start menu, select Programs, then Oracle - HOME_NAME, then Oracle Installation Products, and then Universal Installer. The Welcome window for Oracle Universal Installer appears. Click the Deinstall Products button.


2 Answers

The six-step process to remove all things Oracle from a Windows machine:

A. Delete the Oracle services: In the registry, go to \HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services and delete everything that starts with "Oracle"

B. Remove other Oracle stuff from the registry: Go to \HKEY_LOCAL_MACHINE\SOFTWARE\ and delete the key ORACLE

C. Reboot

D. Delete all the Oracle software from the directories where you installed it

E. Delete the Oracle software inventory: Delete the directory C:\Program Files\Oracle. You must do this no matter where you installed your Oracle software - the Oracle installer automatically writes information here.

F. Delete all shortcuts from your Start menu.

G. Remove the Oracle directories from PATH Environment Variable.

To simplify cleanup in the future, I'd strongly recommend you install your Oracle products in one or more virtual machines.

like image 116
Sten Vesterli Avatar answered Oct 03 '22 23:10

Sten Vesterli


Have a look at:

http://www.oracle-base.com/articles/misc/ManualOracleUninstall.php

Basically, it comes down to:

Remove all you can with the installer. Remove Oracle keys from the registry. Remove the Oracle directories from your computer.

With (of course) the requisite reboots thrown in as required ;-)

like image 40
DCookie Avatar answered Oct 04 '22 00:10

DCookie