Oracle Data Provider for .NET (ODP.NET) features optimized ADO.NET data access to the Oracle database.
0
votes
1answer
16 views
Deciphering ODP.net-triggered stack trace error?
I am using ODP.net to connect to an Oracle schema, and keep triggering the following error trace:
ORA-6413: Connection not open.
at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(
...
0
votes
0answers
5 views
ODP.net OracleBulkCopy to global temporary with ORA-39776: fatal Direct Path API error loading table error
I am using the ODP.net OracleBulkCopy to bulk copy to a global temporary table which has no pk and no indexes and it comes back with ORA-39776: fatal Direct Path API error loading table error. I've ...
-2
votes
1answer
36 views
using oracle object type with number attribute on odp.net
After mapping Oracle Object Type as Class in C# using odp.net, while passing back the class to the stored procedure to insert the data into the table for all attributes with number data is empty. We ...
0
votes
0answers
25 views
ODP.NET ASP.NET EF The specified named connection is either not found in the configurationEntityClient provider
I am getting this error in my web page. "The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid" I cannot ...
0
votes
1answer
25 views
Entity Framework with Oracle using odp.net not taking parameters in linq query
I am using EntityFramework with Oracle using odp.net. The parameterized sql query does not work.
var orderCode = "XYZ";
var set = ctx.Database.SqlQuery<Order>(
"Select * from dwh.Orders ...
0
votes
1answer
44 views
String was not recognized as a valid Boolean. - an Error Related to C#. GridView CheckBoxField
Here is the programming environment.
Framework: ASP.NET Framework 4
Language: Visual C# 2010
Database: Oracle Database 11g
Here is the scenario.
I'm creating a GridView from the HR Sample ...
1
vote
0answers
32 views
Implementing Oracle Object Type in C# / Dot net
we are implementing oracle object type and its method in C#, we followed below link,
http://www.magic-dev.com/map-udt-asp-net-oracle.htm
but ODP.Net is only converting the Attributes to C# Class, we ...
0
votes
0answers
17 views
ODP.NET store procedure RefCursor sorting issue
I have an issue when I get the OracleDataReader from a store procedure wich has a SYS_REFCURSOR out param. The dataReader I get does not have the correct order of the select statement. If I run the ...
1
vote
1answer
47 views
Testing connection on .Net via ODP without user name and password
I'm working on a desktop application on C# and Oracle DB. I connect to DB via a connection string consisting of UserName, Password and DataSet using ODP.
On the application before the Login Screen ...
0
votes
1answer
40 views
Store Serialized Objects into Oracle DB (Preferably XML) C#
Before i start writing code to handle this i want input as to what the best way to go about this is.
The background behind this problem is that i want to create some sort of a storage for a C# object ...
0
votes
1answer
25 views
Getting RefCursor and VarChar outputs from the same Stored Procedure
I am new to Oracle, so please be gentle...
I am querying an existing Oracle DB using C# and ODP11 in .NET 4. All procedures up to this point have been, well, painful to figure out at first, but ...
0
votes
1answer
51 views
Generating Code First Views with Oracle
I am using Code First EF with Oracle ODP.Net, and am trying to re-generate the Views via "EF Powertools Beta 3" within VS2012.
I have recently started getting errors on the view generation which I ...
0
votes
0answers
15 views
ODP.net command parameter incorrectly compiled as Varchar2 when coded as NVarchar2
I am trying to call a procedure from .net using an Oracle command that includes the following output parameter:
cmd.Parameters.Add(new OracleParameter("pv_Display_Name", OracleDbType.NVarchar2, ...
0
votes
1answer
17 views
Oracle Instant Client and LDAP
I am packaging the Oracle Instant Client DLLs with my application to standardize the Oracle client as well as provide one if the user doesn't have one installed.
Currently I need to use a full ...
2
votes
1answer
42 views
Using ODP.NET to get a RECORD from PL/SQL function, without touching PL/SQL code
The title is pretty-self-explanatory: from a C# application, using ODP.NET, I'm trying to call a PL/SQL function that returns not a simple value, but a record.
Unfortunately, I'm not authorized to ...
0
votes
1answer
43 views
ODP.NET: The provider is not compatible with the version of Oracle client
First of all, I want so say I read the other questions and none of them helped me.
The server where I'm getting this error is a Windows 2003 SP2 + .net framework 4.0 + Oracle i9 client
I have ...
0
votes
0answers
11 views
ODP.Net Get data from remote Oracle Database
I am trying to connect the Oracle database in remote Linux server using Oracle DataProvider from the Visual studio. Is ODP.Net only meant to connect the Oracle DB in windows machine or it can also ...
0
votes
1answer
39 views
ORACLE Temp table not session specific (ODP.NET)
I have a program that calls a stored procedure which uses a temp table. I notice the first time i make the call i get the right amount of data back, but every n calls the rows keep getting bigger.
I ...
0
votes
1answer
48 views
OracleDataAdapter CommandText for Updating Dataset
I'm using grids in my project those are filled via DataSets and DataTables.
I use DataNavigators on grids for inserting, deleting and updating rows and i want to commit the changes to database via ...
0
votes
3answers
40 views
Portability issues in VB.NET application
I have developed an application in VB.NET in VS 2010 and I am using Oracle.DataAccess.dll as the DB service provider. I am also creating a deployable package of the same using VS Installer. Now when I ...
0
votes
2answers
36 views
Updating a table on DB considering changes on a grid in C#
I'm filling a Data Grid in C# (WinForms) via a System.Data.DataTable. DataTable is filled from a DB table via ODP.
I have a data navigator in Data Grid for updating, deleting and inserting rows.
I ...
2
votes
1answer
41 views
ODP.NET - Division by zero?
I'm trying to fill a datatable, but the dataadapter returns an exeption: OverflowExeption (Division by Zero). This is my commandtext:
select value1/value2 from table
The datatype of value1 und ...
3
votes
2answers
57 views
Forced usage of stored procedures with ADO.NET Entity Framework
I would like to have your advice.
I'm now developing a small WPF client application using C#, bindings, ADO.Net Entity Framework, ODP.net and an Oracle database.
The application is a small one, two ...
0
votes
2answers
63 views
Oracle and Powershell return only the first line
I have a problem with powershell and oracle.
This is my code
Add-Type -Path "C:\app\aasif\product\11.2.0\client_2\odp.net\managed\common\Oracle.ManagedDataAccess.dll"
$con = New-Object ...
0
votes
1answer
30 views
Two consecutive OracleDataAdapter updates inside a TransactionScope
I need to execute some insert instructions from a typed DataSet to a set of tables in my Oracle DB
I do something like:
OracleDataAdapter da1 = new OracleDataAdapter();
da1.InsertCommand = ...
1
vote
2answers
67 views
Timeout for OracleDataReader.Read Method
The ODP.NET OracleCommand class has a CommandTimeout property that can be used to enforce a timeout for the execution of a command. This property seems to work in situations where the CommandText is ...
0
votes
0answers
117 views
How to convert string to oracle clob for insert database?
I want to insert string to oracle database as clob data type in c#. How can I do this? some codes for example:
private static byte[] GetByteArr(string listParameter)
{
if ...
-2
votes
0answers
38 views
Error while installing ODP.net: unable to write in TEMP directory [closed]
I was earlier using builtin OleDb provider to connect with Oracle but it does not let me to use CLob Data Type.
I tried to install it for my Oracle 10g XE but it gave following error:
Error in ...
0
votes
1answer
137 views
Oracle Data Provider (ODP.NET) using Microsoft Enterprise Library 6.0?
I am using ODP.NET's Oracle.DataAccess.Client 4.112.2 as my Oracle Data Provider and EntLib 6.0. Does anyone know of someone that has implemented this functionality having created your own ...
0
votes
2answers
85 views
insert multiple rows with parameters in odp.net
I want to use "insert all" statement in oracle with OracleParameter. I must insert variable number rows only in one execution. How can I do this?
Here some codes:
string queryInsertRecipients = ...
0
votes
0answers
13 views
why not change notification not fire by odp.net
I have created an application using oracle11g has back end and c# has front end. For application i used oracle change notification. So when ever records in table is modified oracle notification event ...
0
votes
0answers
78 views
EF4 and ODP.NET what handles the connection string in Entity Framework 4?
I have been using the Oracle Data Provider (ODP) in conjunction with my custom data models and my DAL to retrieve data from my tables, but now I want to convert to using Entity Framework to complete ...
0
votes
0answers
39 views
How do I call an Oracle package function using EDM in .NET 4 from Visual Studio 2010?
I am using Visual Studio 2010, .NET 4, Oracle Database 11gR2, and Oracle ODT 11.2.0.3.60 Beta 2 (but I see the same behaviour with ODT 11.2.0.3.20).
My schema has a package defined as follows:
...
0
votes
1answer
97 views
Oracle out parameter cast - c#
Having an issue with an older application I am supporting. The data access is CSLA .Net and there is a line that updates a newly created entity id with the value from an out parameter. This is defined ...
1
vote
1answer
551 views
C# 2010, ODP.net, call stored procedure passing array
I have a PL/SQL stored procedure that takes 4 inputs. One of those inputs is an associative array (Oracle Type: Table of VARCHAR2(1) index by PLS_INTEGER).
I want to have a C# program that calls ...
1
vote
1answer
137 views
Could not load file or assembly 'Oracle.DataAccess' 64 bit ODP.NET
I am using ODP.NET in my asp.net project in order for the application to talk to oracle 11 g Express on Windows 2008 server (32 bit). While on development machine I had Windows 7 (32 bit). I installed ...
0
votes
0answers
33 views
duplicate reference to different version of Oracle.DataAccess?
i have to say that i am very new to developing application using oracle database,
right now i am currently converting an ASP.NET project under visual studio 2003 to visual studio 2008.
Because this ...
0
votes
1answer
46 views
Enterprise Library + Odp.Net BindParameterByName
Anyone knows how to force odp.net bind parameters by name, using it with enterprise library? I know that exists BindParameterByName using OracleCommand, but I'm using odp.net with enterprise library ...
1
vote
1answer
65 views
TFS Build: Referencing different version of Oracle than what's on the buyild server
The short story: Using TFS 2010, I can't get the build server to build using the specific version of Oracle.DataAcess that I need on my target server.
We have one build server at this point for the ...
0
votes
1answer
149 views
Visual studio Oracle client 11g use Oracle.DataAccess Intalation/configuration
I'm a bit lost here.
I have a 64-bit Windows 7 and I'm trying to do something on Visual Studio 2008 (I want to build something that works on 32 and 64 bit systems).
I'm also trying to use ODP.net ...
1
vote
0answers
53 views
Enterprise Library 5.0 with ODP.NET causing ORA-06502 error
I'm getting a strange error when using Enterprise Library 5.0 with EntLibContrib.Data.OdpNet added.
When i try to run a package, I am getting an ORA-06502 error. When i try and run the package ...
2
votes
4answers
409 views
ODP.NET Connection Pooling Parameters
I am trying to configure connection pooling for my .NET application using ODP.NET version 2.111.6.20. The database is Oracle 11.1.
I am using the following connection string in my .NET 2.0 ...
0
votes
0answers
25 views
Dataset to class generation
I need to get a complex tree of tables into a strongly typed dataset. Since ODP.NET doesn't support dataset design in Visual Studio 2005, I wrote some code to fill a generic dataset then I used the ...
0
votes
2answers
251 views
ODP.Net - OracleDataReader.Read very slow
I'm having a lot of trouble with the OracleDataReader in ODP.Net. Basically, I have a parameterized query that takes anywhere from 1-5 seconds to run (returning around 450 records) and then takes ...
4
votes
1answer
132 views
How do I integrate ODP.NET into Repository classes?
My domain model provides e.g. following object Report : IEntity<Report>.
I usually retrieve Oracle user defined type object (or collection types) form stored procedures. For all types C# classes ...
5
votes
4answers
594 views
How to connect to a remote Oracle database
I have to connect to a remote Oracle DBMS into my .NET C# web service
Is request the client Oracle installation? Why?
When you have to use ODP.NET
Thanks
0
votes
2answers
258 views
ASMX webservice to ORACLE DB times out on the first connection
I have written a C# app that communicates with a (ASMX) webservice deployed on another machine. The webservice connects to and performs operations on a backend database located on a third tier.
All ...
2
votes
1answer
195 views
Which is the most efficient way to bulk insert to a Oracle database?
As a part of my requirement in office, Im required to write an C# console application that pulls bulk data from an Oracle CRM ON Demand server and pushes it to a local Oracle DB.
Now, after much ...
0
votes
1answer
46 views
How to return Oracle Custom Rec type
I have to return a single record, and the dba create a package that returns a custom record type. I can't find any help online. I hope you could please help me.
Here are the functions as defined in ...
2
votes
0answers
167 views
Unicode Parameter on Oracle Connectionstring
Why does not Oracle ODP recognize the parameter Unicode=true and Devart's Provider does?
WHen I have data containing the string : "ñãõ,éóúý" , my asp.net application shows "???,????" if I'm using ...



