I am not expert at oracle database, i was using the oracle server but now I wanted to remove that. So for removing the oracle server I have deleted the installation folder instead of using the oracle de-installer. But I can see some services in my system. Can some one please help me to remove those configurations as well. Please excuse my silly mistake.
Asked
Active
Viewed 714 times
0
-
What operating system are you using? And what happens if you run the de-installer? – wolφi Jun 06 '20 at 10:51
-
windows10. Now i not able to find the de-installer any more as wiped out everything. – Mr. Jain Jun 06 '20 at 11:02
-
Check also this one: https://stackoverflow.com/questions/8450726/how-to-uninstall-completely-remove-oracle-11g-client – Wernfried Domscheit Jun 06 '20 at 12:08
-
To the down voter , can you explain why the question is bad ? – Mr. Jain Jun 28 '20 at 11:32
2 Answers
1
That's not really Oracle problem any more, but Windows operating system's.
As you already are in "Services", double-click its name to see both
- service name
- display name
as sometimes they differ. Then open Windows' command prompt and run
sc delete "OracleJobSchedulerORCL"
where OracleJobSchedulerORCL
is the service name. Double quotes aren't needed if there are no spaces in the service name.
If successful, you'll see the
[SC] DeleteService SUCCESS
message.

Littlefoot
- 131,892
- 15
- 35
- 57
-
Can you please also help me to check is there anything else i need to remove to completely wipe out the oracle server. – Mr. Jain Jun 06 '20 at 11:08
-
Check Windows Registry; search for "Oracle", but - be careful when deleting stuff from registry. – Littlefoot Jun 06 '20 at 11:14
0
Simple way to Uninstall Oracle :
Run CMD as Administrator.
Provide Path and Enter C:\user: cd $ORACLE_HOME\deinstall\deinstall.bat (Search deinstall.bat file and then provide path accordingly )
It will Ask Y/N : Give Y
Then It will Ask chose from given option: Select Client Oracle Home - Enter 5
It will Ask Y/N : Give Y

Jay Patel
- 35
- 2