cx_Oracle is a Python extension module that allows access to Oracle databases and conforms to the Python database API specification.
-1
votes
1answer
30 views
Python and Oracle Views
Can someone give me brief information about how to "connect" to an Oracle view from Python?
I looked around but couldn't anything. I'm new to Oracle DB. I will not use it I will only connect it with ...
0
votes
1answer
62 views
DatabaseError: ORA-01036: illegal variable name/number
I need to substitute the following values into select query. but i got the error as i mentioned below
self.jobNo = J-12060
qcActivity = C173
self.wrkArea = 1666339
cursor.execute("""SELECT ...
1
vote
1answer
61 views
Issue installing cx_Oracle on Linux - Import only works from Site-Packages Directory
I have installed cx_Oracle to connect Python and Oracle for programming; however, I can only import cx_Oracle into python if I am in the directory where cx_Oracle lives. How can I import cx_Oracle ...
0
votes
2answers
39 views
What is cx Oracle data type for BOOLEAN? [duplicate]
From http://cx-oracle.sourceforge.net/html/module.html, I am not able to find cx Oracle data type for BOOLEAN.
Thanks,
1
vote
1answer
50 views
How to specify cx_Oracle stored function RECORD return type?
CREATE OR REPLACE my_package as
TYPE x_type IS RECORD { a_val number,
b_val varchar2(20),
c_val boolean };
FUNCTION ...
0
votes
1answer
44 views
Mac 10.8 + Python Scripts: How best to control the python architecture in scheduling?
I have written a python script that queries cx_Oracle and processes the results. Now I'm ready to schedule it on my mac OS10.8 using launchd.
As you may know, cx_Oracle on this mac OS requires ...
-2
votes
1answer
41 views
Connect with Python cx_Oracle to Oracle
I need to connect to Oracle with Python. I use Windows 7 and Python 2.7.
0
votes
0answers
83 views
Loop over cx_Oracle cursor stalls for several minutes
I wrote a component which executes a series of dynamically-constructed queries against a database and eventually performs a final query whose results are fetched. All this logic is wrapped in a ...
0
votes
1answer
180 views
Named Parameters in SQL Queries - cx_Oracle - ORA-01460: unimplemented or unreasonable conversion requested
I have encountered a problem after implementing the named parameters in RAW SQL Queries as per Python DB-API.
Earlier, my code was as follows (and this works fine, both on my DEV Server and my ...
0
votes
0answers
28 views
ocx_Oracle ORA-12541 tns no listener
I try to connect to a remote oracle server by cx_Oracle:
db = cx_Oracle.connect('username', 'password', dsn_tns)
but it says databaseError: ORA-12541 tns no listener
0
votes
1answer
45 views
py2exe / cx_Oracle - OCI.dll in the resulting dist
I am trying to generate an executable for a python script that uses cx_Oracle module. The resulting distribution folder has OCI.dll in it which I would like to avoid as the target machine might have a ...
0
votes
1answer
38 views
cx_oracle unable to find Oracle Client
I have installd Python 2.7.3 on Linux 64 bit machine. I have Oracle 11g client(64bit) as well installed. And I set ORACLE_HOME, PATH, LD_LIBRARY_PATH, and installed cx_oracle 5.1.2 version for Python ...
0
votes
1answer
122 views
How do I install software with an RPM (cx_Oracle) onto CentOS 6?
I have the RPM for a software module that I want to install onto a CentOS 6 system. I have installed this RPM into the yum database via the command 'rpm -ivh '. My understanding is that now the RPM ...
3
votes
1answer
291 views
Django - Oracle backend error
I have the following model in Django:
class Event(models.Model):
# some fields
start_date = models.DateField()
end_date = models.DateField()
I'm using Oracle 10g Database with Django ...
3
votes
1answer
254 views
cx_Oracle 'ORA-01843: not a valid month' with unicode parameter
I have the following: (using ipython)
In [30]: con = cx_Oracle.connect('refill_test02/******@MYDB')
In [31]: cur = con.cursor()
In [32]: cur.execute("ALTER SESSION SET NLS_DATE_FORMAT = 'YYYY-MM-DD ...
0
votes
1answer
36 views
Search for name in cx_Oracle
I have var='smth' and I need to check if var exists in the table 'smtb'
I tried something this, but it does not work:
rows=curs.fetchall()
for row in rows:
if var==row:
...
0
votes
1answer
92 views
Insert statement cx_Oracle
I am new to cx_Oracle and working on a project using Python3, and getting some errors. Here is my code:
uemail="jack@gmail.com"
uname="Jack"
upassword="asdasd"
...
0
votes
1answer
59 views
Importing from Oracle using the correct encoding with Python
I apologize for making a character encoding question since I know you folk get many everyday, but I couldn't figure out my problem so I asked anyway.
Here is what we are doing:
Take Data from an ...
0
votes
0answers
77 views
RobotFramework : cx_Oracle - FAIL : InternalError: No Oracle error?
Couldn't find a solution for my problem using search so I created this topic.
I'm having problems when connecting to Oracle database using DataBase libary and cx_Oracle module.
In python import ...
0
votes
0answers
69 views
Can't import cx_Oracle.pyd
I am using Python 2.7.3 and I downloaded the correct cx_Oracle version for my computer. However when I try to import it, I get this:
import cx_Oracle
Traceback (most recent call last):
File ...
2
votes
2answers
287 views
How can I do a batch insert into an Oracle database using Python?
I have some monthly weather data that I want to insert into an Oracle database table but I want to insert the corresponding records in a batch in order to be more efficient. Can anyone advise as to ...
1
vote
1answer
71 views
Inserting rows using cx_Oracle and logging the ones that fail?
What I am trying to do is insert a bunch of rows using cx_Oracle and if there is an error (i.e. constraint violation) log the bad row.
Here is the sudo code for how I would do it using execute, ...
0
votes
1answer
48 views
Is there anyway to get info on a BLOB field in Oracle?
I am importing data from an Oracle DB that is neither made nor administered by myself.
There might be some BLOB fields in that data.
Assuming that the field title is not a good description for the ...
0
votes
1answer
108 views
How to change environment variables in python?
i have a simple python script ( test.py ):
import cx_Oracle
from cx_Oracle
tns = cx_Oracle.makedsn('10.10.1.3', 1521, 'etst')
db = cx_Oracle.connect('test', 'test', tns)
it is work if I run script ...
0
votes
0answers
55 views
Expected in flat namespace error on cx_oracle with python
I have installed cx_oracle python library successfully. Even developed a script which connects to Oracle DB and fetches, does some validation etc., all is well.
One day i got this error "Image not ...
0
votes
0answers
101 views
Error loading cx_Oracle module with IIS and PyISAPIe
I have developed a Django application, and i am
trying to get it to run under IIS on Windows Server 2003. I'm
generally following the Django walkthrough but my db is Oracle.
If I run python from the ...
0
votes
1answer
105 views
cx_oracle deleting with executemany?
as in equivalence to cx_Oracle.executemany, what i could use to exclude ?
With a very simple example im using this block of code to insert data, but its possible to do it for delete entries?
try:
...
0
votes
1answer
202 views
Cannot Insert Unicode Using cx-Oracle
I am having an issue inserting unicode into an Oracle schema, I think the database is an Oracle 11g instance but am not certain at this point. I'm using python 2.6.1 on OS X 10.6.8 (this is the system ...
1
vote
1answer
62 views
sql query in python--debugging appending values
I am trying to append certain values row[9:11] to my query results IF rows0-8 are already in existence (to avoid redundancy and move from many rows to one row, many columns). The query executes fine, ...
0
votes
1answer
105 views
cx_Oracle query results to nested dictionary
I need to create a set of dictionaries from Oracle query results.
My data is laid out into station ID, date, time, location, species, and catch weight. For each species, there is a new line, while ...
0
votes
0answers
463 views
cx_Oracle.InterfaceError: Unable to acquire Oracle environment handle
I'm trying to install cx_Oracle in my Red Hat Server. I have Python 2.4, cx_Oracle-5.0.3-1 and Oracle 10g
The error I have when I try to connect to my database is the following:
...
0
votes
1answer
144 views
Insert List into oracle db with cx_ptyhon returns illegal variable name/number
using the content of this xml example saved on a local file called test.xml , I'm trying to parse the content and insert into my database using the following code:
import cx_Oracle
import re
...
1
vote
0answers
201 views
How to install both MySQLdb and cx_Oracle on Mountain Lion?
I've been trying for days to get both MySQLdb and cx_Oracle running successfully together on Mountain Lion to no avail. It appears that I can only get one or the other to run but not both. Here are my ...
0
votes
2answers
112 views
Perl to Python: hash to nested dictionary and cx_Oracle
I need to translate a perl hash to a nested, keyed Python dictionary after reading data from an Oracle database into an array. What is the most efficient way to do this? The existing Perl code (I ...
1
vote
1answer
66 views
Perl to Python and cx_Oracle, fetchrow_array
Is there an equivalent to the perl fetchrow_array when connecting to Oracle using Python?
I am essentially trying to translate the following perl code into python for use with cx_Oracle... I need to ...
1
vote
3answers
995 views
SELECT data from another schema in oracle
I want to execute a query that selects data from a different schema than the one specified in the DB connection (same Oracle server, same database, different schema)
I have an python app talking to ...
0
votes
1answer
335 views
cx_oracle and python 2.7
Im using python 2.7 and cx_oracle ( Windows x86 Installer (Oracle 10g, Python 2.7) ) and 'm having a bad time to set this simple example bellow to work:
import cx_Oracle
connection = ...
2
votes
1answer
167 views
User input variables in cx_Oracle?
I'm using cx_Oracle to access our database. I would like the user to be able to input the station ID, for example:
stationID=(whatever the user inputs upon prompting)
cursor.execute('''select ...
0
votes
1answer
32 views
Passing cx_oracle error code
I'm performing inserts in 4 different tables using cx_oracle and need to pass the return_Val, error.code and error.message.
func1
try:
insert1()
insert2()
insert3()
insert4()
...
0
votes
2answers
813 views
InterfaceError: Unable to acquire Oracle environment handle; ORACLE_HOME is correct and SQL*Plus will connect
I'm getting the standard "DLL load failed; module not found" error when trying to import cx_Oracle. I have the proper instant client installed, the paths are all correct... running Dependency Walker ...
0
votes
1answer
379 views
Inserting a CLOB using cx_Oracle
I am trying to insert a CLOB using the following code.
cursor = connection.cursor()
cursor.setinputsizes(HERP = cx_Oracle.CLOB)
cursor.execute("INSERT INTO myTable (FOO, BAR) VALUES (:FOO, :BAR)", ...
0
votes
1answer
221 views
cx_oracle Error handling issue
I'm trying to execute the following query in cx_Oracle but get the following error while executing:
print 'Error.code =', error.code
AttributeError: 'str' object has no attribute 'code'
...
0
votes
0answers
115 views
get sequence number in cx_oracle python
Im trying to execute a insert statement that has a sequence number column but unable to determine the returning value.
When I execute the below statement without binding seqvalue I get a error. When ...
0
votes
1answer
216 views
python3.2 - Update clob using cx-oracle
I'm migrating some code from perl to python. I can read the clob I need to update using the code below:
*cur.execute(""" SELECT ,a.Category
,a.Status
…
...
0
votes
2answers
409 views
“error: cannot locate an Oracle software installation” When trying to install cx_Oracle
Newbie here trying to use python to do some database analysis. I keep getting the error:
"error: cannot locate an Oracle software installation" When installing CX_oracle (via easy_install).
The ...
0
votes
1answer
56 views
Django produce sql with table name different then specified in meta db_table
I'm using django 1.4 with oracle backend
In my models.py I have:
class ProteinTherapeutics(models.Model):
#...
class Meta:
db_table = 'mnowotka\".\"protein_therapeutics'
...
0
votes
2answers
307 views
Binding variable to table name with cx_Oracle
I'm using cx_Oracle in Python and can't get a variable be used as table name, like in this simple example:
query = "select * from some.:usertable.userinfo"
bindvars = {'usertable':usertable}
...
0
votes
1answer
104 views
Optimizing Oracle database query/fetchall
The database design is far from optimum but I have to deal with it and now I'm really stuck.
Edit: I'm using cx_Oracle
OK so this is my query:
query="select degree, spectraldev.event.eventnumber \
...
0
votes
1answer
131 views
create cx_Oracle arrayvar for DATETIME
I want to create a cx_Oracle arrayvar for datetime, wihch I can then use to feed callproc. So the code I expect is something like this:
dt1 = datetime.datetime.strptime('2012/07/30 10:42:09', ...
0
votes
0answers
245 views
cx_Oracle error ORA-24315 when connecting … sometimes
I wrote a script and ran it on desktop 'A' which targeted an Oracle db (10g) and an app server on desktop 'B'. It ran without any problems.
I then copied the script over to desktop 'B' and it spat ...