The oracleclient tag has no wiki summary.
0
votes
0answers
18 views
OracleClient works with WPF application but not web application
I am porting a WPF application to a web application (ASP.net & C#). My IDE is Visual Studio 2008 and we are using Oracle 11g. My OS is Windows 7 , 64-bit. THe WPF application uses ...
1
vote
0answers
132 views
ORA-01002: fetch out of sequence
I'm getting the following oracle error when my app is deployed on the server only, and not when running the exact same executable on my local machine:
The stack trace points to a simple select ...
0
votes
0answers
137 views
TNS:could not resolve the connect identifier specified
I have oracle server 11g installed on my windows 7 machine. I have to install this server from a remote machine. Remote machine is a 64 bit system,with Ubuntu 12.10. To access the server I installed ...
0
votes
1answer
198 views
How to Install “Oracle Data Access Components (ODAC)” on Windows Server 2003 R2?
I recently installed "32-bit Oracle Data Access Components (ODAC) with Oracle Developer Tools for Visual Studio" on my computer (Windows 7, 64bit). Everything seems fine and I can develop and run my ...
0
votes
0answers
14 views
WCF service can't find Oracle binaries [duplicate]
I developed a web service using Visual Studio 2010 on a Windows 7 64 bit machine. One of the service methods (let's call it GetData()) connects to an Oracle 9 database using System.Data.OracleClient ...
0
votes
1answer
129 views
how to include oracle client 64 bit version in my project 32 bit application c#
i'm Develop a project using visual studio 2010 and oracle client from comm objects in VS 2010 4.0 framework and my windows XP 32 bit operating system. but target system is 64bit server it does not ...
0
votes
0answers
73 views
Oracle client issue in C# app
I got an C# application that reference a local racle.DataAccess.Client DLL rather than one from GAC.
This application works ok on other people's machine but not on mine? Anybody got an idea?
...
0
votes
1answer
113 views
Oracle 11g client access from classic asp
We have a web page in asp which accesses Oracle data using the oracle client. We're having trouble getting the asp to access the oracle client for Oracle 11g. With Oracle 10g we had to give the ...
0
votes
1answer
1k views
PL/SQL developer with oracle 32-bit/64-bit client
I have Oracle 64-bit client installed to run with my weblogic application. I learnt that pl-sql developer doesn't work with oracle 64-bit client so now i have both 32-bit and 64-bit clients installed ...
1
vote
1answer
257 views
set DllPath value of oracle.dataaccess.client settings at runtime
I have add
<oracle.dataaccess.client>
<settings>
<add name="DllPath" value="<application_path>\bin"/>
</settings>
</oracle.dataaccess.client>
to my ...
0
votes
0answers
57 views
Best way to distribute oracle client with asp.net applications
I am using both odb.net and odbc connection in my ASP.NET application. I still need odbc because I have legacy c++ dll that connect over odbc to oracle. I want to reduce steps for installation of my ...
0
votes
1answer
582 views
SSRS report with 32-bit Oracle Client Not working in 64-Bit Environment
I have a SSRS report using 32Bit Oracle client build in BIDS 2008, Report is running fine in BIDS (VS 2008) but when deployed to Report Manager on Win2k3 64 Bit Server it is failing with the following ...
0
votes
1answer
1k views
How to connect to Oracle db from SSIS/SQL Server Data Tools?
I have Oracle 11g r2 client installed on my 64 bit machine running Windows Server 2008 r2. Have the following installed:
SQL Server 64 bit
MS Office 64 bit
I tried connecting from excel/powerpivot to ...
0
votes
0answers
41 views
How to migrate from .NET OracleClient to Oracle.DataAccess?
When I use .NET OracleClient, connecting to Oracle works fine. But, when I replace it with Oracle.DataAccess it is resulting in the following error:
value does not fall within the expected range ...
1
vote
3answers
3k views
How to know installed Oracle Client is 32 bit or 64 bit?
OS: Windows 2008 Server R2
Oracle Client: 11.2
Many Thanks
1
vote
1answer
350 views
Deploy a .Net application with Oracle Client 11
I've followed this post and it's not working. Can someone tell me what else to check?
Steps I followed:
I added dll's from my current install of Oracle (11gR2_x32) to the root of my project. I did ...
1
vote
0answers
249 views
Difference between Oracle client and Instant client [closed]
What is difference between Instant client and Oracle client?
0
votes
2answers
292 views
How can I connect oracle database without oracle client?
I want to connect oracle database without oracle client.After searching that how can i do this, figure out I must be use oracle instance client . But how can I use this? Icant find something about ...
0
votes
1answer
695 views
Connect Oracle using SqlPlus by Domain User
Client and Server machines are under Domain. I am trying to connect orace db using SqlPlus tool. I am getting
ERROR:
ORA-01017: invalid username/password; logon denied
though username and pwd is ...
1
vote
3answers
2k views
The type or namespace name 'OracleConnection' could not be found
I am getting this error every time I try to debug my program:
CS0246: The type or namespace name 'OracleConnection' could not be found (are you missing a using directive or an assembly ...
1
vote
3answers
2k views
The type or namespace name 'OracleClient' does not exist in the namespace 'System.Data'
When trying to run my code, I receive the following error:
CS0234: The type or namespace name 'OracleClient' does not exist in the namespace 'System.Data' (are you missing an assembly reference?)
...
0
votes
1answer
1k views
Connect Oracle DB using 64 bit Oracle Client from 32 bit process
I have application running in 32 bit mode. it tries to connect oracle DB using Oracle Client. Oracle Client is running in 64 bit.
string connectionString = @"Data Source=" + oracleDBName + ";User ...
0
votes
0answers
128 views
w2k3 web edition and oracle instant client based on ODAC 11.2 Release 4 (11.2.0.3.0)
I am trying to install an oracle instant client based on ODAC 11.2 Release 4 (11.2.0.3.0) to allow my webservices (.Net 4.0) to access the database.
My package runs fine in windows 7 (32 and 64 bits), ...
2
votes
2answers
4k views
How to install oracle 11g client?
I'm trying to install Oracle 11g Release 2 (client). But it gives an error like that :
Environment variable: "PATH" - This test checks whether the length of the environment variable "PATH" does not ...
0
votes
2answers
313 views
ORA-00922: missing or invalid option | SQL*PLUS commands using OracleClient
OracleConnection conn = new OracleConnection();
conn.ConnectionString = @"Data Source=(DESCRIPTION =(ADDRESS_LIST =(ADDRESS = (PROTOCOL = TCP)(HOST = 10.206.0.23)(PORT = 1521)))(CONNECT_DATA = ...
0
votes
1answer
2k views
Connecting to remote Oracle database using Oracle Client
I have to connect to a remote Oracle database. Connection will only work with a VPN access to the remote network. I have already setup the VPN, and that is working.
Remote team has passed TNS.ORA ...
0
votes
0answers
118 views
exp/imp commands using c# ADO.NET
I have been asked to create code in c# that
1)First of all removes everything from a DB.
Right now we use SQL plus to execute the following command :
RAMNIVAS_CC/RAMNIVAS_CC@orclwex3 set ...
0
votes
2answers
665 views
Can i oracle C# connection without oracle client?
I want to do oracle connection with C# but I want it without oracle client. Is that possible?
0
votes
2answers
111 views
Get Oracle oradata folder from c# code?
Is it possible to get or guess oracle's oradata folder from a C# code?
e.g. D:\oracle\product\10.2.0\oradata
My purpose is to create an installer that automatically create tablespace, but we need to ...
0
votes
0answers
164 views
Japanese characters not working correctly with VB 6 class library
I am facing the below problem with japanese characters handling in VB 6.0.
While retrieving japanese data from ORACLE DB in VB 6 class library using oradynaset recordset, the data is converted to ...
0
votes
1answer
924 views
Oracle: Error while registering Oracle JDBC Diagnosability MBean
I am trying to install OracleClient 11g and initially i had a issue regarding JDK compatibility.
Error:
so i ended up uninstalling JDK 7 (64bit) and reinstalled JDK 6 (32bit) and edited ...
3
votes
2answers
7k views
Oracle 11g Client connecting to both 10g and 11g databases
I've seen a few post that says Oracle 11g Client (for Windows) works fine with databases up to 9.2. But if the client sometimes connect to 11g and sometimes to 10g databases, is it still working ? My ...
1
vote
2answers
2k 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
677 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 ...
5
votes
3answers
4k 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 ...
0
votes
2answers
91 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
132 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
495 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
1k views
Oracle Client components to install for using Oracle in .NET application
I have to connect an Orcle DB (virtual machine) from my .NET application. After reading some tutorials and docs I recognized that there are several components which could/should be installed:
- ...
5
votes
3answers
3k 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 ...
0
votes
1answer
196 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 ...
1
vote
0answers
650 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, ...
3
votes
2answers
449 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
...
0
votes
1answer
634 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 ...
0
votes
1answer
252 views
Asp.net web application crashes when retrieve data from an oracle DB
I have an asp.net website on a windows server 2003. The application connects to an oracle 10g R2 Database and the data layer is generated by subsonic.
The database and the application are on separate ...
4
votes
1answer
947 views
ODP.NET - deploy without installation ORACLE CLIENT - big size of oraociei11.dll
I use ODP.NET in my WPF app for access to Oracle 10g db. I dont want instal oracle client on users computers so I copied these dll to realese folder:
oci.dll
ocijdbc11.dll
ociw32.dll
...
3
votes
1answer
4k 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
2k 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 ...
3
votes
3answers
2k 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
4answers
3k 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
...


