Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
143 views

Oracle OCI - failing with ORA-12705 when running as another user

I've got a C application using OCI to talk to a database. I'm using the instant client method so there is no standalone Oracle installation on the server - just a couple of libraries that the ...
3
votes
1answer
760 views

cx_Oracle problem trying to import python

I am trying to run python in an Apache WS in a linux RHEL x86_64. After Install and configure Python2.5 and Apache, I install Oracle Instant Client (basic and sdk) in a by an .rpm file withou any ...
2
votes
1answer
122 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
3answers
210 views

Oracle instant client can't execute sql update

I can connect to a Oracle 10g release 2 server using instant client. Using pyodbc and cx_Oracle. Using either module, I can execute a select query without any problems, but when I try to update a ...
2
votes
1answer
501 views

Oracle Instant Client with web application

I have a visual studio solution with an ASP.NET 3.5 web application (WCF host) and a test project. I wanted to use the Oracle Instant Client (v11, via NHibernate) to create Oracle connections without ...
2
votes
1answer
453 views

Deploying cx_Oracle onto various versions of Oracle Client

I have some small python apps that use cx_Oracle to connect to an Oracle database. I deploy these apps by compiling them with py2exe, which works fine in many cases. The problem is, there is no ...
1
vote
1answer
52 views

Does Oracle Instant Client Basic Lite 11.2.0.3.0 for Win32 exist?

ODP.NET 11.2.0.3.0 was released on December 28, 2011 and its description says that it contains Oracle Instant Client 11.2.0.3.0. Since I'm distributing the Instant Client binaries directly with my ...
1
vote
2answers
162 views

Oracle ORA-01805 on Oracle 11g database

Our Oracle 10g database was recently upgraded to 11g. The database is running on a Windows Server 2003 X64 machine. In SQL queries from a .NET application that access a table that has a TIMESTAMP (6) ...
0
votes
1answer
49 views

cx_oracle OSX install error

So I followed these directions here to install Oracle InstantClient, installing Oracle Instantclient on Mac OS/X without setting environment variables? But when I try to install cx_oracle I get the ...
0
votes
0answers
55 views

cx_Oracle + oracle instance client 11g hang up

next code works correct with instant client 10g, but hang up when using oracle instant client 11g, hangs on pool.release(conN), import time print '---------------------------------' import ...
0
votes
1answer
646 views

ORA-12705: Cannot access NLS data files or invalid environment specified

I just installed the Oracle instant client on my laptop, and get this when I try to connect via ODBC in C#. The machine has had 9.2 and 10.2 installed in the past. Why does this error appear? In my ...
0
votes
0answers
71 views

Different data providers in different lists

Why do Oracle data providers not appear in the SQL Server Management Studio 2008 R2 provider list? Ole DB for Oracle appears in BIDS when I add a new data source. ODBC for Oracle appears in the ODBC ...
0
votes
1answer
476 views

Using Oracle Instant Client on ASP.NET. Getting ORA-12154 or 12545 Error

I have a web service that I have deployed and am using an Oracle Instant Client instance in the bin folder. The problem is, no matter what connection string I use on a Testing Server, i get a ...
0
votes
1answer
156 views

Instant file sharing between users in PHP

Working on a rather complex system in which users can directly exchange files with eachother from the website. However is any of these things possible: EITHER * Have another user download a file ...
0
votes
2answers
3k views

Oracle: what is the “instantclient” connection string format?

and how does it differ from the regular connection string? update: name/pass@//host:1521/instance
0
votes
5answers
8k views

installing Oracle Instantclient on Linux without setting environment variables?

Oracle's instructions specify setting LD_LIBRARY_PATH. This makes my application dependent on random users' configuration and is very troublesome to set up. How can I avoid having to set any ...
0
votes
1answer
3k views

installing Oracle Instantclient on Mac OS/X without setting environment variables?

Oracle's instructions specify setting DYLD_LIBRARY_PATH. This makes my application dependent on random users' configuration and is very troublesome to set up. How can I avoid having to set any ...
-2
votes
2answers
140 views

Fatal error: Call to undefined function oci_connect()

I have the next lines uncommented (in my php.ini): extension=php_oracle.dll extension=php_oci8.dll And I downloaded this file instantclient-basiclite-nt-11.2.0.2.0.zip and unzipped and put that on ...