I'm trying to use the Oracle ODP.NET 11g (11.1.0.6.20) Instant Client on my ASP.net project as a Data Provider but when I run the aspx page I get a "The provider is not compatible with the version of Oracle client" error message. Any help would be appreciated.

I've referenced the Data Provider in Visual Studio 2005 and the code behind looks like this:

using Oracle.DataAccess.Client;
..

OracleConnection oOracleConn = new OracleConnection();
oOracleConn.ConnectionString =
    "Data Source=MyOracleServerName;" +
    "Integrated Security=SSPI";
oOracleConn.Open();

//Do Something

oOracleConn.Close();

The error for the page looks like this:

Exception Details: Oracle.DataAccess.Client.OracleException: The provider is not compatible with the version of Oracle client

Source Error: 
Line 21: 
Line 22: 
Line 23:             OracleConnection oOracleConn = new OracleConnection();
Line 24:             oOracleConn.ConnectionString =
Line 25:                 "Data Source=MyOracleServerName;" +

[OracleException (0x80004005): The provider is not compatible with the version of Oracle client]
   Oracle.DataAccess.Client.OracleInit.Initialize() +494
   Oracle.DataAccess.Client.OracleConnection..cctor() +483

Stack Trace: 
[TypeInitializationException: The type initializer for 'Oracle.DataAccess.Client.OracleConnection' threw an exception.]
   Oracle.DataAccess.Client.OracleConnection..ctor() +0
   Boeing.IVX.Web.RoyTesting.Page_Load(Object sender, EventArgs e) in C:\Documents and Settings\CE218C\Desktop\IVX.Net\Web\IVX\RoyTesting.aspx.cs:23
   System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +15
   System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +33
   System.Web.UI.Control.OnLoad(EventArgs e) +99
   System.Web.UI.Control.LoadRecursive() +47
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1436
link|improve this question

feedback

11 Answers

I've been looking into this problem further, and you simply need to grab all the appropriate DLL's from the same downloaded version of ODP.Net and put them in the same folder as your Exe file, because ODP.Net is fussy about not mixing version numbers.

I've explained how to do this here: http://splinter.com.au/using-the-new-odpnet-to-access-oracle-from-c Here's the gist of it though:

link|improve this answer
3  
Your solution worked for me -- found your blog post before I found this. You are the man. Thanks! :-) Also, using the latest version of the ODAC, I didn't need to unzip any of the JARs...the .dll files were located in various directories in my oracle home. A simple windows search turned them up very quickly. – Pandincus Dec 28 '10 at 18:23
3  
Also, I was using the latest version of ODAC (11.2.0.1.2) on my development machine, and the only files I needed were: oci.dll, Oracle.DataAccess.dll, oraociei11.dll, OraOps11w.dll. As Chris points out, MAKE SURE THEY'RE IN THE SAME FOLDER AS YOUR EXECUTABLE. ;-) – Pandincus Dec 28 '10 at 18:36
1  
Sounds like the newer version makes it easier to find the dll's. Great! Now how long till oracle rolls them into one simple dll... – Chris Jan 5 '11 at 0:57
Chris' strategy and Pandincus' library set worked for me. I'm calling the oracle client through PowerShell, so I put the library set in the PowerShell executable directory. – quillbreaker Aug 3 '11 at 16:56
I couldn't get this to work with the Oracle.DataAccess.dll for .net framework 4, only for the one for .net framework 2. Does someone found which files are needed for .Net 4 version? – olorin Oct 10 '11 at 6:56
show 2 more comments
feedback
up vote 13 down vote accepted

I only installed the Oracle Data Provider for .NET 2.0 (11.1.0.6.20) and I did not install the Oracle Instant Client (11.1.0.6.0). I just installed it and the error disappeared!

Thanks for all the help

link|improve this answer
Great! I thought it smelled an awfully lot like the the underlying client was missing. Haven't worked with Oracle in a while, but I remember this types of issues constantly. – Peter Meyer Mar 19 '09 at 4:57
Thanks for taking the time to look at this Peter. – EverTheLearner Mar 19 '09 at 16:46
Can you simply copy the 4 instant client DLL's into the same folder as your EXE, instead of installing the client? (these files: oci.dll orannzsbb11.dll oraocci11.dll oraociicus11.dll) – Chris Aug 11 '09 at 0:43
Thank goodness. Saved my bacon this one. Thanks! – James Wiseman Jan 24 '11 at 12:03
feedback

This can be caused by running a 64bit .NET runtime against a 32bit Oracle client. This can happen if your server you are running the app on it 64 bit. It will run the .NET app with the 64bit runtime. You can set the CPU flag on your project in VS to run in the 32bit runtime.

link|improve this answer
3  
+1 - this is easily overlooked – Ed Guiness May 17 '10 at 9:05
Just ran into this one. Worked in a (32-bit) test app, then fell over in IIS. Rather than require all the assemblies involved to be 32-bit, I changed to a 32-bit AppPool. – Anton Jul 20 '11 at 9:49
feedback

For Oracle 11g (11.1.0.7.20) I had to add the following dlls along with my Exe to work.

  1. oci.dll
  2. OraOps11w.dll
  3. oraociicus11.dll (pretty huge close to 30mb)
  4. Oracle.DataAccess.dll
link|improve this answer
feedback

Also look for IIS Application pool Enable 32-bit true or false flag, when you see this message, some oracle forum directed me for this!

link|improve this answer
also check you have ORACLE_HOME set correctly – Paul Lockwood Jul 15 '11 at 12:27
feedback

It would seem to me that though you have ODP with the Oracle Istant Client, the ODP may be trying to use the actual Oracle Client instead. Do you have a standard Oracle client installed on the machine as well? I recall Oracle being quite picky about when it came to multiple clients on the same machine.

link|improve this answer
feedback

I had the exact same problem. I deleted (and forgot that I had deleted) oraociei11.dll after compiling the application. And it was giving this error while trying to execute. So when it cant find the dll that oraociei11.dll, it shows this error. There may be other cases when it gives this error, but this seems to be one of them.

link|improve this answer
feedback

install ODP.Net on the target machine and it should solve the issue... copying the dll's does not look a good idea...

link|improve this answer
feedback

Install the XCopy version of ODAC and follow the instruction in the "Readme" file. http://www.oracle.com/technetwork/database/windows/downloads/utilsoft-087491.html

link|improve this answer
feedback

We had the same problem, because the Oracle.Data.dll assembly on a network share was updated by our DBA's. Removing the reference from the project, and adding it again solved the problem.

link|improve this answer
feedback

Does the IIS/IWAM user have permissions on the Oracle directory? Can you connect to this data source using another app, such as Excel or Access?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.