tags:

views:

166

answers:

4

The error is : System.Data.OracleClient requires Oracle client software version 8.1.7 or greater.

I'M using 8.1.7

Any help will be appreciated.

A: 

Hard do say without more information. I've had something similar happen to me when I had multiple clients installed.

Steve
when i try to open the connection it shows me that error, what kind of information do you need?
What user is the code running under? Is it a web site? I tend to think that JP is correct below in that it is a permissions issue, but I'd need more info to diagnose..
consultutah
OK, its a console application that is running as a windows task, its running under an administrator user account.
A: 

It seems to be a permissions issue. Check out some of the remedies here. They might work for your version as well.

JP Alioto
I already tried that, and the problem persists.
+1  A: 
  • check that you are using Oracle client 8.1.7 or above. Open CMD prompt and run sqlplus. Look at version information.
  • Look at your PATH environment variable. Make sure that oracle client 8.1.7 or above is mentioned first (among multiple oracle clients), because AFAIK MS Oracle provider uses the first client mentioned in PATH.
Petar Repac
in the PATH variable d:\orant\bin is first.
A: 

Thanks for all the answers, I installed Oracle 9i Client and now everything is working as intended.

Thx,

LR.