Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
7answers
3k views

System.Data.OracleClient namespace discontinued?

I just read this article today about how Microsoft decided to remove the System.Data.OrcaleClient namespace from .NET 4.0 library. I used this as my primary tool for working with Oracle databases. ...
6
votes
6answers
230 views

What is your favorite Oracle client?

First of all, I've seen this, but I want to ask it in a different way. What Oracle client do you use? I've been using SQL Developer but it has problems. Mainly in speed, which the poster in the ...
5
votes
3answers
832 views

Commandline to modify tnsnames.ora

Is there a command line utility to modify the tnsnames.ora file for the oracle client? [EDIT] I'm looking for something similar to odbcconf.exe (for editing ODBC connection on windows) to modify the ...
5
votes
5answers
16k views

Why do I get java.lang.AbstractMethodError when trying to load a blob in the db?

I've got a problem with JDBC. I'have the following code: //blargeparam is a blob column. PreparedStatement pst =connection.prepareStatement("update gcp_processparams_log set blargeparam= ? where ...
4
votes
3answers
268 views

I have problem to connect oracle DB with SQL developer

I try connect to my oracle db with oracle SQL developer and received that message: pic (pictures 1 and 2) if i try connect with sql plus, all well. command : select userenv('LANGUAGE') from dual; ...
4
votes
3answers
8k views

Connect to an Oracle 8.0 database using a 10g client

I recently upgraded my oracle client to 10g (10.2.0.1.0). Now when I try to connect to a legacy 8.0 database, I get ORA-03134: Connections to this server version are no longer supported. Is there ...
3
votes
2answers
51 views

Referring external file in TNSORANAMES.ora

I am trying to write a VB script to add/edit/delete some entries in tnsnames.ora. It will be convenient to refer/modify an external file (say myProjectOraNames.ora) rather than modifying tnsnames.ora ...
3
votes
3answers
499 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
3answers
648 views

DataReader not closed when Connection is closed, consequences?

for example i have this code : Sub Month() Dim Conn As New Data.OracleClient.OracleConnection Conn.Open() Try Dim Cmd As New Data.OracleClient.OracleCommand With Cmd ...
3
votes
4answers
293 views

Good Oracle database development and management tool on Windows

I'm looking for an Oracle database management tool like sql server management studio. I've searched the internet and found a lot of tools on the following link: ...
3
votes
2answers
290 views

Why does OracleParameter implement ICloneable but doesn't provide Clone()?

I am using the OracleClient library version 1.0.5000.0 and I am confused about the OracleParameter class and its implementation of ICloneable. This is the definition of the OracleParameter class: ...
3
votes
6answers
11k views

Anyone have any luck installing Oracle10g Client 64-bit 10.2.0.3 on Windows 7 x64 RTM?

I am happy with Windows 7 RTM x64 overall as everything in my development environment works well with it except for Oracle Client 10.2.0.3 64 Bit version. I downloaded the latest release and as soon ...
3
votes
7answers
711 views

How can I mock/fake/stub sealed OracleException with no public constructor?

In my tests I need to test what happens when an OracleException is thrown (due to a stored procedure failure). I am trying to setup Rhino Mocks to Expect.Call(....).Throw(new OracleException()); ...
2
votes
1answer
63 views

Installing ODP.net on server to resolve Oracle.DataAccess.Client.OracleException: The provider is not compatible with the version of Oracle client

I have a test environment for a service that my site will be using and a production environment. In my test environment I have ODP.net installed on the server. That service that uses Oracle seems to ...
2
votes
1answer
835 views

tnsping fails, but can connect to Oracle DB via sqlplus

I've installed the Oracle Client v. 11.2.0.1 on a Windows XP machine and set both the TNS_ADMIN and ORACLE_HOME environment variables. Using sqlplus to connect to a remote database via a TNS alias ...
2
votes
2answers
372 views

Connection to Oracle works through a console application and doesn't work through a web service

I can't connect to an Oracle schema through a asmx web service instead of I can through a console application [x86]. The code: var conn = new OracleConnection("Data Source=xe;User ...
2
votes
1answer
836 views

Oracle Instance Client Light (odac 11) and character sets

I am trying to connect to oracle db without full installation of oracle client done on the machine. I found this helpfull post Using the new ODP.Net to access Oracle from C# with simple deployment but ...
2
votes
1answer
3k views

Oracle SQL Developer - Query results window with grid missing

I've just made the switch from MS sql server to Oracle. The query tool I am using is Oracle SQL Developer. The problem I am having is that I cannot get the query results window to stick around. The ...
2
votes
1answer
1k views

ODAC & C# - TNS: Connect timeout occurred - Connecting only through VS2005 debugger

I am new to Oracle, and there is an issue I am facing. When I run the application from IDE - Visual Studio 2005, The database connection is established smoothly, but when I run an installed version of ...
2
votes
0answers
444 views

Problem loading Oracle client libraries when running in a NAnt build

I am trying to use dbdeploy to manage Oracle schema changes. I can run it successfully from the command line to get it to generate my change scripts, but when I try to execute it via the dbdeploy ...
2
votes
2answers
1k views

Why is OracleDataAdapter.Fill() Very Slow?

I am using a pretty complex query to retrieve some data out of one of our billing databases. I'm running in to an issue where the query seems to complete fairly quickly when executed with SQL ...
2
votes
1answer
268 views

Setting up IIS with System.Data.OracleClient

I have a asp.net web application that connects to a Oracle 10.2g database. If I'm running my site in the Visual Studio 2008 webserver everithing is ok, but when a publish it in IIS a get ...
2
votes
4answers
156 views

How do I browse databases on an Oracle Server?

So I'm coming from a position as a SQL Server developer who has written a little bit of PL/SQL way back in the mists of time but effectively knows nothing. I've got a laptop, it's running Oracle. ...
2
votes
1answer
896 views

Very frustrating ORA-12154 excpetion finally resolved!

This is a little something I thought I need to share. We had some issues establishing connection to Oracle. We kept getting the ORA-12154 (TNS:could not resolve the connect identifier specified) ...
2
votes
6answers
1k views

Why do I get Oracle connection errors only in a VS 2008 web app/site project?

Using Visual Studio 2008 on Vista 64 bit, if I create a test web site or web application that looks like this... public partial class _Default : System.Web.UI.Page { protected void ...
2
votes
2answers
431 views

How do I specify which Oracle client install to use?

I have a server with both 10g and 11g clients installed. How do I setup the connection string to tell my ASP.NET application to use the second client which is 11g (i.e. OraClient11g_home2)?
2
votes
3answers
14k views

The type initializer for 'Oracle.DataAccess.Client.OracleConnection' threw an exception

I have developed an application that uses Oracle Data Provider for .NET. I copy the application file (.exe) and ODP library (Oracle.DataAccess.dll) on another computer that Oracle client and ODP.NET ...
2
votes
2answers
11k views

Oracle connection string without tnsnames.ora file

I am using the .NET framework with the System.Data.OracleClient namespace. I have the oracle 11 client installed on my computer. I do not want to use the tnsnames.ora file to store connection ...
1
vote
2answers
138 views

Does ODP.NET require Oracle Client installation

I have to connect Oracle 11g DB from .NET code. For that purpose I installed ODP.NET bur after reading some forum posts I recognized that I need Oracle Client installation too. Is that true? I see ...
1
vote
0answers
105 views

System.Data.OracleClient.OracleConnection throws type initializer exception

I would like to ask help for a problem that I am facing. I was running a long task within a website. Because it was taking some time to process the task, I decided to change the structure. Shortly, ...
1
vote
2answers
261 views

Oracle Connection to .Net - Connection Pool

This is more specifically with SQL Server Reporting Services, however I also see this as typical .Net application issue as well. Here is the problem. We are using SSRS to report data from Oracle ...
1
vote
2answers
616 views

ORA-01008 with all variables bound

I'm using System.Data.OracleClient which does parameter-binding by name and are verifying that CommandText and Parameters are in sync: public string CommandText { get; set; } public ...
1
vote
3answers
348 views

How to get user input from dynamically created form

I am building an ASP.NET website that allows users to create and take tests. Tests can contain various types of questions (multiple choice, true/false, essay, etc.). Because of the dynamic nature of ...
1
vote
1answer
479 views

How to validate prerequisite for ODP and Oracle Client connection

I have a very simple application on .Net that connect to Oracle using ODP (was compiled with Oracle.DataAccess dll 10.2). I want to check "connection prerequisite" (application will be able to connect ...
1
vote
0answers
89 views

How do I create an instance of Oracle.DataAccess.Client.OracleException to use with NMock

I'm using the Oracle.DataAccess.Client data provider client. I am having trouble constructing a new instance of an OracleException object, but it keeps telling me that there are no public ...
1
vote
1answer
32 views

Statically Compiled Oracle Client Drivers/Code

I'm looking to write a command-line program that can execute database scripts against an Oracle server, however the machine the program will be run on may not have an Oracle client installed on it. I ...
1
vote
1answer
4k views

How to compile a Website to use 32-bit Oracle Client on 64-bit Windows

I have received this error after updating to Windows 7 64-bit and then running an existing .NET Website. [InvalidOperationException: Attempt to load Oracle client libraries threw ...
1
vote
2answers
2k views

Converting from DbCommand object to OracleCommand object

I have inherited a function in an ASP.NET (C#) application where the author used the Microsoft.Practices.EnterpriseLibrary.Data library, but I have been asked to change it so that it uses ...
1
vote
2answers
428 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 ...
1
vote
2answers
828 views

OracleClient to devart dotConnect for Oracle

Has anyone tried migration from Microsoft OracleClient to dotConnect for Oracle? Is it realy so easy (as they wrote at their blog http://www.devart.com/blogs/dotconnect/?p=67) or just another ...
1
vote
1answer
1k views

Unable to set up ODBC after installing ODAC (Xcopy)

We are trying to use ODAC Xcopy to minimize the footprint of installing Oracle 11g Client. Currently, we use the Oracle 11g Admin install (~700mb). I've tried using the ODAC Xcopy, and that works. ...
1
vote
4answers
2k views

Oracle .NET error - Wrong number or type of arguments

Now I know this has been asked before. But I've made doubly sure that all parameters are correct and there are no typos. I still get the error. Could somebody please guide me here? I am nearing my ...
1
vote
1answer
2k views

ADO.NET, Closing an OracleConnection without prior Commit or Rollback: Will it leak?

Suppose I am doing the following: using (OracleConnection conn = new OracleConnection(connStr)) { OracleTransaction trans = conn.BeginTransaction(); OracleCommand command = new ...
0
votes
1answer
35 views

TNS:could not resolve the connect identifier specified in .NET OracleClient

Im using a .net OracleClient in my machine for connecting to a Database in Oracle. When im trying to connect its showing this TNS Error. Now, I have edited the tnsnames.ora file and sqlnet.ora file. ...
0
votes
1answer
41 views

.NET Framework Data Provider for Oracle multiple open connection

I have the below mentioned code in a seperate class file for establishing connection and carry out DB transactions. I have an issue where multiple connections being opened which sometime exceed the ...
0
votes
2answers
18 views

No Oracle client on my server but an Oracle.dll in my bin directory

This is a really dumb question. But I have a hard time with Oracle and it's .net setup. But, I don't have an Oracle client on my server (Oracle 11g). I do have the ODP.net dll in my bin and lib ...
0
votes
1answer
33 views

Pass a row record to Oracle procedure using System.Data.OracleClient

I would like to pass 51 plus parameter to an oracle stored procedure, i would like to pass them as a collection/array or custom object. I know its possible using assiative arrays using ODP driver but ...
0
votes
1answer
66 views

How does System.Data.OracleClient finds installed OracleClient

I wonder how does library System.Data.OracleClient finds installed on machine OracleClient. I've reinstalled the client, but still get error "OracleClient requires Oracle client software", which seem ...
0
votes
1answer
46 views

Execute oracle fuction which returns a varchar2 and a refcursor (oracle client .net)

How to write a function (.net oracle client) which execute an oracle function and returns a varchar2 and aref cursor. My oracle function is like Function function_name(arg1 in number, arg2 in ...
0
votes
1answer
141 views

Connecting remote Oracle Database server from a Perl script running on Unix, without Oracle client

I have a Unix machine which I need to connect to a remote Oracle database server though Perl/Shell script. I have searched online but did not find a thorough information on whether it's possible to ...

1 2