Reputation:
I am getting this error while installing the Oracle database 11g it giving me an error Checking For Oracle XE Service instance FAILED
Upvotes: 0
Views: 13168
Reputation: 56
The OracleServiceXE is probably a remnant of a previous install. You'll need to remove it using the sc
command:
sc delete OracleServiceXE
Make sure you run the command as Administrator.
Upvotes: 4
Reputation: 2651
STEP1: Start -> run (services.msc) -> Services => Stop OracleServiceXE (if running)
STEP2: Start -> CMD (run as admin) -> sc delete OracleServiceXE
Now RESTART your System
Upvotes: -1