Tagged Questions
OCI is the Oracle Call Interface, used for direct programming access to an Oracle Database. Similar to ODBC, it is specific to Oracle databases.
7
votes
1answer
177 views
Suppress PHP warnings for expected Oracle exceptions
I have a PHP function that calls a PL/SQL package that can throw a number of known exceptions (i.e. user exceptions) that I can catch in PHP and act on. The problem is, despite catching the exception ...
5
votes
8answers
24k views
How to find out when an Oracle table was updated the last time
Can I find out when the last INSERT, UPDATE or DELETE statement was performed on a table in an Oracle database and if so, how?
A little background: The Oracle version is 10g. I have a batch ...
3
votes
1answer
69 views
How to get constraint errors from OCIErrorGet?
Our C++ program is using Oracle and OCI to do its database work. Occasionally, the user will trigger a constraint violation, which we detect and then show an error message from OCIErrorGet. ...
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
191 views
Getting a bind position from a bind name in OCI
When using OCIStmtPrepare() and OCIBindByName(), is there a way to do the bind by name, then get the position of that bind as an int? OCIStmtGetBindInfo() doesn't seem to do it. Thanks!
3
votes
7answers
1k views
How to detect Oracle broken/stalled connection?
In our server/client-setup we're experiencing some weird behaviour. The client is a C/C++-application which uses OCI to connect to an Oracle server (using the OTL library).
Every now and then the DB ...
2
votes
0answers
77 views
PDO_OCI: could not find driver
Today my problem is connected with PDO, OCI8 and PDO_OCI. But from the beginning.
I'm using Ubuntu 11.10 and PHP version: 5.3.8-1ubuntu3. I have installed Oracle 10g Express, configured it and it ...
2
votes
0answers
22 views
Is it possible to dynamically size buffers when fetching varchar2 column values?
Given a table with FAT rows of many potentially large strings:
create table t (s1 varchar2(4000), ..., sN varchar2(4000))
I know how to fetch these columns using direct binds, i.e.
...
2
votes
1answer
66 views
Check for dependency of a Qt plugin at runtime
Here's what I have: My application is statically compiled with Qt 4.5. I'm using the qsqloci plugin (linked statically), which loads the oracle libraries dynamically (oci.dll, ...).
I'd like to be ...
2
votes
3answers
143 views
Run a sql query with a timeout in PHP or How in PHP, to stop a sql query once already begun?
I read the documentation for oci_cancel but it seems to me a bit fuzzy.
Does oci_cancel kill the sql process in the server?
If not, how can I make a script that executes a sql query, waits a moment ...
2
votes
1answer
93 views
How to get sql_id in OCI
Is there a way to get the sql_id/child number/plan hash after calling OCIStmtExecute()? I can't see it in OCIAttrGet().
NOTE: As a regular user who can't see v$session - if I can it's as simple as ...
2
votes
2answers
543 views
PHP & Oracle - oci_connect() ORA-12705: Cannot access NLS data files
We've been using Oracle on our server for years, but someone from IT removed it yesterday without clear warning and it's really thrown our systems!
I've acted on the advice from cwallenpoole (thank ...
2
votes
1answer
248 views
validate Oracle non-SELECT query
Is there any way to check if an SQL query for Oracle would run successfully (by successfully I mean that the query is syntactically correct, all the table/column names exist, the user has proper ...
2
votes
2answers
314 views
PHP OCI, Oracle, and default number format
When I execute a fetch from an Oracle database using PHP OCI, numbers that are less than 1 are shown as .XXXXXX, e.g. .249999. Is there a way to set this to 0.XXXXXX or to any other format, without ...
2
votes
1answer
785 views
PDO/Oracle vs OCI
The company I work for currently uses some basic functions to abstract the OCI libraries as a means for DB connectivity. We're considering switching to PHP's PDO object, but from some quick searches, ...
2
votes
3answers
383 views
OCI: Determine length of text representation of query columns
My goal is to execute a query (SELECT), fetch results and output them as text. Query is given as a parameter and can be e.g. select * from t.
I use OCIStmtPrepare and OCIStmtExecute, then I can ...
2
votes
2answers
2k views
JVM crashes when trying to connect to Oracle using OCI
I have three machines set up as follows:
CompA: Running Oracle server 10.2.0.3
CompB: Running Oracle server 10.2.0.4 and my client code
CompC: Running client code only
On the client code on both ...
1
vote
0answers
35 views
php: pdo read clob without bind
$query = "select id, xmldata from xmlcontent where id = '586655' OR id = '671347'"
$db = new PDO(...);
$stmt = $db->prepare($query);
$stmt->execute();
$result = ...
1
vote
0answers
17 views
php oci_bind_by_name float to numeric
I need to bind floating point number to OCI statement.
What I'm doing:
$price = 0.1
oci_bind_by_name($resource, 'price', $price);
In my Oracle DB 'price' is an argument of the stored procedure and ...
1
vote
1answer
33 views
Oracle OCI - fetch delays and fails
I've got an Oracle OCI program, which is in production on various platforms: SLES Linux, Ubuntu, AIX, Solaris and HP-UX. I'm trying to get the same thing running on Redhat, and I'm having ...
1
vote
1answer
65 views
ORA-12154 PHP OCI8 grief
Configured a CentOS 5.6 server with Oracle's 11g XE (the freebie version), installed OCI8 with the help of this guide and got a pre-existing (custom) PHP application communicating with the database ...
1
vote
0answers
87 views
SLES install php-oci8 without compile whole php/apache?
Is there a way to install the oci8-pkg of oracle on Suse Linux Enterprise Server (SLES) without downloading oci8 and compile php with it?
eventually a zypper or pear like installation?
What's up to ...
1
vote
1answer
164 views
Can't compile against OCILIB
I'm having trouble compiling some code against ocilib (libocilib.a) on version 3.9.0:
$ ls
libocilib.a ocilib.h test.c
$ gcc -o test -L. -locilib test.c
/tmp/cc4071VP.o: In function
...
1
vote
0answers
128 views
Does Oracle provide public Symbol Files (PDB) for OCCI/OCI?
OTN Thread: Does Oracle provide public Symbol Files (PDB) for OCCI/OCI ?
When debugging an application under Windows (with Visual Studio or WinDBG) that makes use of OC[C]I it would often be ...
1
vote
2answers
846 views
Setup oci8 on rhel 6 with REMI repository
I've done this before, but it was a long trial and error process that resulted with my test machine having multiple copies of php, oci8, and the instant client, and I'm still not sure what it was that ...
1
vote
1answer
32 views
Using a NULL pointer with OCIAQDeq()
In the documentation for OCIAQDeq() it states:
The application may choose to pass
NULL for payload the first time
OCIAQDeq() is called, and let the OCI
allocate the memory for the payload.
...
1
vote
1answer
793 views
Getting Stale Connection using OracleDataSource with OCI driver
I am getting stale connection error when there is no requests to the database from my java application for couple of hours.
Its a simple java application runned on Linux box with OCI (type driver). ...
1
vote
1answer
108 views
OCIDate getting mangled on the way into Oracle
I have some C code to populate an OCIDate from the epoch time:
In my main program:
OCIDate ocidate;
epoch_to_ocidate(c.f, &ocidate);
And in a library:
void epoch_to_ocidate(double d, OCIDate* ...
1
vote
0answers
253 views
Specifying Encrypted password in JDBC OCI Connection String
I've a standalone application that we use to connect to the Oracle database. In the past, we used JDBC to connect to it, but now due to various reasons we've switched towards using OCI thick client. ...
1
vote
0answers
147 views
Zend Pdo_Oci and pl/sql
I have pl/sql procedure, that accepts table of number (foo).
I want to call it from my Zend site.
I'm trying the following:
$sql='begin foo(:nums);end;';
$stmt = new ...
1
vote
4answers
935 views
Connect to Oracle with odp.net and the OCI from C#
I have been reading about how to connect to my oracle database from my C# win application, but I keep “hitting the wall”. I have decided to use odp.net and OCI, such that the client computer not needs ...
1
vote
1answer
156 views
How to autologin to oracle using OCI with C++ using windows credentials?
Basically I have a C++ app which login to oracle db using OCI.
DB is configured to authenticate users from windows domain user accounts.
At the moment when my client log in, I pass user name and ...
1
vote
2answers
388 views
How to write LONG RAW data using OCI and Lob locator?
I want to fix zeoslib bug in writing long raw data
bug description:
Memo1.Lines.LoadFromFile('c:\t\ZDbcMetadata.pas'); // file size ~ 170Kb
ZQuery1.SQL.Text := 'insert into t1(id, b) values(10, ...
1
vote
1answer
695 views
error linking to oci libraries from vc++
Im using the OCI libraries from oracle 9i(personal edtn) for connecting to the database from my c program.(im using visual c++ 2005)
ive included all lib files from oci and included them in the ...
1
vote
1answer
196 views
Oracle OCI Client Cache Not Working
I am using Oracle Database 11g Release 11.2.0.2.0 and trying to enable the oci client cache. It isn't working.
The configuration changes I made to enable it are -
Enabled the client result set ...
1
vote
0answers
45 views
Is is possible to reuse Oracle native compiled shared libraries?
Since Oracle can do a native C compilation for PL/SQL code (code is compiled with a C compiler like gcc into a shared object file on servers file system) I am wondering about this. Can I develop a ...
1
vote
1answer
317 views
Oracle OCI Connection Pooling vs Oracle UCP
I am researching on various Oracle JDBC connection pooling mechanisms and as I understand Oracle offers 4 connection pooling mechanisms when OCI driver is used
Oracle DataSource
Oracle OCI ...
1
vote
1answer
60 views
Is the password case senstivie when given to OCIAttrSet with OCI_ATTR_PASSWORD?
In a fragment of a (c++) OCI programm, I use OCIAttrSet with the OCI_ATTR_PASSWORD flag in order to pass (or set) the password to initialize a session like so:
success = OCIAttrSet (
ses,
...
1
vote
1answer
66 views
Show oci_parse'd statement
Is there a way to show the SQL statement that has just been ociparse'd (with or without bound variables)? I maintain a legacy application and sometimes the SQL is built from many different places and ...
1
vote
1answer
125 views
OCI, an appetizer
Can anybody point me to a good OCI quick tutorial? I took a tour of official Oracle documentation, but it is really huge (and I know OCI deserves every line of it, anyway).
Since I'm starting off ...
1
vote
3answers
596 views
Oracle OCI: Problem in Query with Date field
Client compiled with OCI: 10.2.0.4.0
Server: Oracle9i Enterprise Edition Release 9.2.0.4.0
The problematic query is:
SELECT CODIGO FROM LOG WHERE TEL = :telnumber AND DATE_PROC = '05-JUL-08'
Table ...
1
vote
3answers
1k views
Oracle - OCI query timeout
Is there any way to set a timeout on Oracle OCI calls (OCIStmtExecute for example) ?
Thanks
1
vote
2answers
1k views
How do I call an ORACLE function from OCI?
I can call an ORACLE stored procedure through OCI in a C program by constructing the SQL command for the command, here's a brief snippet from my code:
/* build sql statement calling stored ...
1
vote
2answers
1k views
Detecting the number of ORACLE rows updated by a OCI OCIStmtExecute call
I have an ORACLE update statement that I call using the OCIStmtExecute function call.
Using an OCI function call I would like to know how many rows have been updated by the action, e.g. zero, one or ...
1
vote
2answers
852 views
Detecting a column with a default value using the Oracle Call Interface (OCI)
I'm optimising a bespoke database layer in a messaging system to increase performance.
I'm using the ORACLE OCI OCIDescribeAny function to get meta-data about the columns in a database table.
How do ...
1
vote
5answers
5k views
How to set up OCI to connect to Oracle from PHP?
On the latest Ubuntu, I have a functioning PHP 5.2.4 installation. I want to use a remote Oracle server from PHP using OCI.
I've downloaded the "Instant Client Package - Basic Lite" (Link). I've ...
1
vote
4answers
3k views
Oracle OCI array fetch of simple data types?
I cannot understand the Oracle documentation. :-(
Does anybody have any pointers to an example how to fetch multiple rows of simple data from Oracle via OCI?
I currently use OCIDefineByPos to define ...
0
votes
2answers
34 views
Correct use of bind variables with dates in Oracle?
I'm puzzled about the correct use of bind variables with dates in Oracle. This isn't within the database or when using PL/SQL, but rather when interacting with Oracle across an OCI interface, where ...
0
votes
0answers
17 views
Can I call OCISharedLibInit() from a lib not loaded with ORA_OCI_UCBPKG?
I want to register OCI callbacks. I want to register them globally and not per OCIEnv but OCIUserCallbackRegister() requires an OCIEnv parameter.
I see there's an option to register a callback that ...
0
votes
0answers
8 views
For array binding using OCIBindByPos how to specify the array length
The documentation about OCIBindByPos
sword OCIBindByPos ( OCIStmt *stmtp,
OCIBind **bindpp,
OCIError *errhp,
ub4 ...