user14480205
user14480205

Reputation:

While Installing Oracle database 11g Checking For Oracle XE Service instance FAILED what should I do

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

Answers (2)

Rapzinger
Rapzinger

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

rohit.khurmi095
rohit.khurmi095

Reputation: 2651

STEP1: Start -> run (services.msc) -> Services => Stop OracleServiceXE (if running)

enter image description here

  STEP2: Start -> CMD (run as admin) -> sc delete OracleServiceXE

  Now RESTART your System

Upvotes: -1

Related Questions