Tagged Questions
The system.data.oracleclient tag has no wiki summary.
5
votes
3answers
2k views
Issues calling stored procedure from C# with large CLOB
I'm not the first to have these issues, and will list some reference posts below, but am still looking for a proper solution.
I need to call a stored procedure (Oracle 10g database) from a C# web ...
2
votes
1answer
509 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
1k views
How to tell System.Data.OracleClient to use the 64 bit Oracle Driver
I am trying to run a .NET application which uses System.Data.OracleClient on a Win7 x64 workstation. The workstation has a 32bit Oracle client installed, which leads to the following error message:
...
2
votes
1answer
731 views
How Do You Insert Large Blobs Into Oracle 10G Using System.Data.OracleClient?
Trying to insert 315K Gif files into an Oracle 10g database. Everytime I get this error "ora-01460: unimplemented or unreasonable conversion requested" whe I run the stored procedure. It appears ...
1
vote
0answers
89 views
how to replace code that uses now obsolete System.Data.OracleClient namespace classes?
I've made a "generic" program that converts data from a db to another. It uses configuration files to define the conversion. It uses code like this:
static DbProviderFactory _srcProvFactory;
static ...
1
vote
3answers
554 views
ORA-06550, PLS-00306; Error inserting data to Oracle procedure
I have tried to troubleshoot this problem but to no avail. I get error while inserting a big chuck of data to Oracle package containing procedure 'INSCRAPP'. The error message is,
ORA-06550: line ...
1
vote
3answers
1k views
Is there a way to force OracleCommand.BindByName to be true by default for ODP.NET?
Since the System.Data.OracleClient library has been deprecated, we are in the process of migrating our code base to use Oracle Data Provider for .NET (ODP.NET) instead. One of the issues that we have ...
1
vote
2answers
427 views
Constructing a good search query using system.data.oracleclient
I am constructing a search function in a class to be used by several of our asp pages. The idea is simple, take a search term from the user and query the database for the item. Currently I am doing ...
0
votes
0answers
25 views
Oracle REFCURSOR Bind Variables and closing cursor
I am using REF CURSOR bound variable to execute a dynamic Oracle PL/SQL query from a .NET app.
BEGIN
OPEN :ref_cursor FOR SELECT ...
END;
.NET Code
Dim cmdFetchData As New ...
0
votes
2answers
80 views
System.data.OracleClient with 32 bits oracle client driver on Seven 64 bits Operating system
I have a Web application migrating from asp.net 1.1 (VS 2003) to Asp.net 2 ( VS 2008).
I have a problem to execute Oracle connexion on the new version . The dev environnement is 64 bits Seven. When ...
0
votes
1answer
35 views
SSRS OracleClient Error in VS2008
I've searched around for an answer to this, but have thus far been unsuccessful finding something that works for me.
I am attempting to connect to an Oracle database in an SSRS report within VS2008, ...
0
votes
0answers
97 views
System.Data.OracleClient.OracleConnection.InfoMessage - Distinguish Warning from Error
I have a System.Data.OracleClient.OracleConnection and I attached an OracleInfoMessageEventHandler to the OracleConnection.InfoMessage
Documentation on this EventHandler indicates that this will ...
0
votes
0answers
326 views
In C# Using System.Data.OracleClient.OracleParameter String Containing Single Quotes is Cut
I can't understand why but there seems to be a different behavior with my varchar parameters according to whether I'm in a transaction or not.
I want to pass an OracleParameter, type VARCHAR, ...
0
votes
2answers
493 views
Help Optomizing Bulk Inserts into Oracle Using VB.NET
I am inserting a block of 5000 records at a time, one block right after the other. The commands are created in a seperate DLL and can call anyone of 4 different stored procedures. Is there a bulk ...
-1
votes
1answer
61 views
how to migrate doubles and dates from System.Data.OracleClient to ODP.NET?
This migration seem to be really challenging. What i'm trying to do now is to execute simple queries to a oracle db table:
OBJECTID NOT NULL NUMBER,
DOUBLEVALUE NOT NULL FLOAT(126),
MODTIME DATE
...