Tagged Questions

Oracle Data Provider for .NET (ODP.NET) features optimized ADO.NET data access to the Oracle database.

learn more… | top users | synonyms

23
votes
13answers
4k views

How to write a .Net application that works with both SqlServer and Oracle (now that System.Data.OracleClient is deprecated)

see also System.Data.OracleClient namespace discontinued? (Firstly don’t panic yet, System.Data.OracleClient is not being removed by Microsoft yet, however it is not in the client version of .net 4) ...
13
votes
2answers
2k views

Randomly getting ORA-08177 with only one active session

I'm running a program that creates a table and then inserts some data. This is the only program that accesses the database. I'm getting ORA-08177 randomly. Actual code is somewhat complex, but I've ...
12
votes
4answers
3k views

What is the minimal setup required to deploy a .NET application with Oracle client 11?

What is the minimal setup required to be able to deploy a .NET application that talks to an Oracle database?
9
votes
5answers
13k views

Is it ok to use oracle 11g client with a 10g server?

I am creating a .NET program that uses odp.net, specifically the 11g version. Our oracle server is running 10g. I am too late in the development process to make a change. Am I heading for trouble? ...
8
votes
3answers
5k views

Binding query parameters by name with ODP.NET

I'm currently using the Microsoft ADO.NET provider for Oracle (System.Data.OracleClient). I'm aware that it is certainly not the best Oracle provider available and that it will soon be deprecated, I ...
7
votes
2answers
267 views

How does fetching data from SQL Server to SqlDataReader work?

When I call this code: using (var connection = new SqlConnection(connectionString)) { var command = new SqlCommand("SELECT * FROM Table", connection); connection.Open(); using (var reader ...
7
votes
3answers
5k views

LINQ to SQL for Oracle.ODP

Does LINQ to SQL support Oracle.ODP? If not, is a similar offering from Oracle available or in the works?
6
votes
4answers
11k views

The provider is not compatible with the version of Oracle client error when using Oracle.DataClient

I'm using Visual Studio 2008 Express Edition, and I'm trying my hand in developing a small application using Oracle.DataClient. I'm getting the above mentioned error, when trying to connect to the ...
6
votes
4answers
3k views

ODP.NET and ClickOnce possible?

We have a sqlserver (WinForms) application that is deployed with ClickOnce that talks directly to the database. If we are forced to port it to oracle, can ODP.NET be used with ClickOnce. (The users ...
5
votes
2answers
181 views

why I get OracleTruncateException with ODP.NET OracleDataAdapter but not with System.Data.OracleClient's adapter when DbDataAdapter.Update called?

I do the following: protected int CreateComponent(DbConnection cnctn, string tableName) { int newId; DbCommand selectCmd = _provFactory.CreateCommand(); selectCmd.Connection = cnctn; ...
5
votes
2answers
3k views

In WiX how do I test for the existence of a registry key (not value) for Oracle ODP.Net

More specifically I want to test whether Oracle ODP.Net is installed on a machine. I want to do this by testing for the HKLM\SOFTWARE\ORACLE\ODP.NET registry key. The actual values used by ODP.Net ...
5
votes
5answers
10k views

Is ODP.NET required for Oracle 11g Client?

I may be asking the wrong question here, I'm willing to change it if so. I have a project that is using the Microsoft.NET Oracle provider (our plan is to change to ODP but we haven't done so yet). I ...
5
votes
3answers
4k views

ODP.net Oracle Decimal Number precision problem when filling a dataset. Exception: Arithmetic operation resulted in an overflow

I am working in c# .net 2 (Visual Studio 2005 SP1) attempting to fill a dataset with the results from a select * from table from an Oracle10g database. The .net framework, IDE and database cannot be ...
4
votes
1answer
1k views

Could not load file or assembly 'Oracle.DataAccess, Version=2.112.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies

After deploying asp.net app to the server im getting this error. Could not load file or assembly 'Oracle.DataAccess, Version=2.112.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its ...
4
votes
1answer
3k views

How to return a RefCursor from Oracle function?

I am trying to execute a user-defined Oracle function that returns a RefCursor using ODP.NET. Here is the function: CREATE OR REPLACE FUNCTION PKG.FUNC_TEST (ID IN TABLE.ID%type) RETURN ...
4
votes
3answers
458 views

How to know when to stop filling an OracleDataAdapter

I'm using the OPD.NET dll in a project that is accessing oracle. Users can type in any SQL into a text box, that is then executed against the db. I've been trying to use the OracleDataAdapter to ...
4
votes
2answers
3k views

Upgrading EntLib 4.1 to 5 with Oracle.DataAccess.Client

I am upgrading a project from EntLib 4.1 to EntLib 5. I've skimmed through the Migration Guide, changed all the references and updated all the config files to point to EntLib 5. All worked fine accept ...
4
votes
4answers
4k views

Why doesn't ODP.NET 11 xcopy deployment work on a machine with Oracle DB 10 installed?

I have an app that uses a local version of ODAC 11 below the directory that the .exe file is in. The idea is that we want our app to use the local ODAC 11 regardless of what else the user has ...
3
votes
1answer
67 views

Parameter Delimiters

I have C# application we've been coding in ADO.NET. I've been using the IDbCommand, and IDbConnection interfaces to create cross-database code. It's all worked wonderfully so far (across ...
3
votes
3answers
195 views

Oracle ODP.NET Cursor Leak?

I'm running into an open cursor limit issue with using the following code. The open cursor limit on the oracle db is set to around 1000. The following code seems to hold onto the cursors even though ...
3
votes
3answers
504 views

Oracle Datareader in .Net - way too slow (over network)

Before I get the "have you tried ODP.net?" answers, yes I have and am using it now. I'm moving data from oracle to sql server (not important) and am using a datareader on the oracle connection. ...
3
votes
1answer
194 views

How to use SQL 'IN' (or 'ANY') operator with VARRAY in PL/SQL

My .NET code is currently using ODP.NET to call a stored procedure many times to operate on various rows in many tables. The .NET code has an array of the rows to change. Only one parameter changes ...
3
votes
2answers
420 views

Problem on using ODP.Net

I've successfully used Oracle Database 11g Release 2 (11.2.0.1.0) to connect oracle from .Net. (in reference Oracle.DataAccess.dll version was 2.112.1.0). But when I installed ODP.NET and when I am ...
3
votes
2answers
258 views

Oracle Odp.Net unreported error on call to procedure in invalid package

I just got my worst maintenance nightmare : a silent error. I was calling a procedure using Odp.Net inside a custom package, and the procedure call failed silently without any exception being thrown ...
3
votes
1answer
1k views

Invalid binding for Oracle UDT in procedure parameter

I'm attempting to call a procedure that takes a custom data type of table of numbers as one of the parameters. Here is the definition of the type: create type num_list as table of number; And the ...
3
votes
4answers
1k views

Oracle query is slow (or fails) from .NET app but is fast from SQL Developer

We use ODP.NET to perform queries on Oracle databases, and normally it works fine. There is a particular database, and a particular view in that database, though, that we just can't complete a query ...
3
votes
4answers
2k views

Oracle oci.dll in ASP.NET bin directory can't be deleted/doesn't work

I followed the directions here: http://splinter.com.au/blog/?p=156 in an attempt to use a newer version of ODP.NET without installing the Oracle 11g client. I followed everything, so far, except for ...
3
votes
2answers
3k views

Does ODP.net close a ref cursor when the connection closes?

I haven't been able to find this explicitly stated anywhere yet, but a bunch of examples I've found online follow what I've been doing. I have a C# class which uses ODP.net to connect to an Oracle DB ...
3
votes
6answers
24k views

ORA-03113: end-of-file on communication channel after long inactivity in ASP.Net app

I've got a load-balanced (not using Session state) ASP.Net 2.0 app on IIS5 running back to a single Oracle 10g server, using version 10.1.0.301 of the ODAC/ODP.Net drivers. After a long period of ...
2
votes
2answers
41 views

Oracle connections not closing

We have ASP.NET app that connects to oracle database with odp.net. Lately we started to experienced some performance issues. It seems that Oracle connections do not close and eventually pile up until ...
2
votes
1answer
67 views

calling stored procedure whit oracle data provider .net with two or more definitions (error PLS-00307)

I'm using Oracle Data Provider .net to interact with an Oracle database. I need to call a sample stored procedure but... The stored procedures is in an oracle package where there is another stored ...
2
votes
1answer
125 views

ORA-28547 using xcopy ODP.NET and instant client

I'm trying to use oracle odp xcopy deployment, and an instant oracle client as described in: http://ora-00001.blogspot.com/2010/01/odpnet-minimal-non-intrusive-install.html The goal is to use oracle ...
2
votes
1answer
143 views

Can OracleBulkCopy move data from my process address space to a table?

I'm hoping to speed up some large scale ETL operations, that read and transform a bunch of stuff from strangely formatted flat files and an even stranger XML datastore, then insert many records into ...
2
votes
2answers
147 views

Oracle SQL query fails only in one process: “ORA-01405: fetched column value is NULL”

I'm trying to call a system stored procedure in a "plugin" that I've built. When I test my plugin out in a test application, it works fine. When I run the plugin in the targeted app I'm building it ...
2
votes
3answers
214 views

ODP.NET Stored Procs and Optional Parameters

I tried searching and haven't found a definitive answer to my issue. I am making the switch from SQL Server to Oracle but still using C# for the front end. I am using ODP.Net. I have a stored proc in ...
2
votes
2answers
199 views

Cast .NET DateTime to OracleDate

I am trying to insert a .NET DateTime value into an Oracle DATE column using ODP.NET. Thus far, I have tried using the OracleDate() constructor to cast the .NET DateTime like so: new ...
2
votes
1answer
515 views

ORA-12571: TNS:packet writer failure with ASP.NET

My development team is experiencing numerous “ORA-12571: TNS:packet writer failure” errors using ASP.NET 3.5 and 4.0 against Oracle 11g. These errors are inconsistent as to when they occur, and are ...
2
votes
2answers
741 views

Tutorial for C# web development

All, I am looking for some good tutorial material to learn C# web development. Basically, I want to create a c# web form which would extract data from Oracle database and would give provision for the ...
2
votes
1answer
434 views

How to clear the ODP.NET connection pool on connection errors?

I'm using NHibernate and ODP.NET to connect to a Oracle 11g database. Of course there can be connection errors (network failure, DB down, ...). I'm handling all these exceptions in my code, so no ...
2
votes
0answers
327 views

Oracle DataAccess Data provider internal error -3000 when deployed

I'm having an issue with a web service i have created. It is running fine when running on localhost on my PC. The problem is, when I deploy the web service to a remote IIS server, I keep getting ...
2
votes
1answer
167 views

Deploy ODP.Net 1.x with Oracle Instant Client?

I have an issue with adjusting my application to use separated Oracle Install Client/ODP.Net configuration. I've tried to follow steps mentioned in: ...
2
votes
2answers
430 views

Oracle Column/Value size Issue

I'm using ODP.NET and Oracle 10g to transfer data from a datatable to a db table. The problem i'm facing is when trying to insert a value into a NUMBER(12,3) column. The value is 100100100,55 - i get ...
2
votes
1answer
97 views

IUserType Corresponding to Int64 With ODP.net

We have a custom type that mostly corresponds to System.Int64 that's used for our system identifiers (it provides a few extra constraints on what the underlying long value can be). We've also got an ...
2
votes
1answer
888 views

ODP.NET: Avoiding Connection Timeouts with Connection Pooling

At one site I can connect to the Oracle Database with SQL Developer, leave it idle for a long time (e.g., > 60 minutes), and return, and it's fine. At a second site, if it stays idle for more than ...
2
votes
1answer
192 views

async operations in oracle

Is there anyway one can run async operations in oracle. Here is my situation: I have an expensive proc (say it takes 30 mins to run). I have a web-based front-end that controls when this proc ...
2
votes
1answer
666 views

Usage of Oracle binding variables with LIKE in C#

As part of an effort to stop using dynamic SQL generation and encourage use of bind variables, I am running into some problems. I am querying an Oracle 9i database from an ASP.NET page using Oracle ...
2
votes
2answers
1k views

Execute an oracle Function that returns a reference cursor in C#

I have an oracle package with a procedure that has a in out reference cursor. My understanding is that this is pretty standard. What I didn't like is the fact that I had to write a ton of code to ...
2
votes
1answer
530 views

ODP .NET Getting a SYSREFCURSOR output. {“Unsupported column datatype”} error

I am trying to execute a procedure that returns a stored procedure. My version of Oracle DB is 9.2 and the ODP .NET version is 10.2.0.100 My C# code looks like this. OracleCommand od = new ...
2
votes
2answers
3k views

Oracle.DataAccess.Client.OracleException ORA-03135: connection lost contact

I have a .Net service that connects to an Oracle database on every request. It works fine at the beginning, but after some number of requests I start getting: Oracle.DataAccess.Client.OracleException ...
2
votes
1answer
162 views

Is it possible to pass types defined in plsql package headers using odp.net?

TYPE point IS RECORD ( X NUMBER, -- The X co-ordinate of the point Y NUMBER -- The Y co-ordingate of the point ); This is defined in my package header. It is then used in a procedure ...

1 2 3 4 5 6