Tagged Questions
Psycopg is the most popular PostgreSQL adapter for the Python programming language. At its core it fully implements the Python DB API 2.0 specifications. Several extensions allow access to many of the features offered by PostgreSQL.
28
votes
4answers
731 views
Improving Postgres psycopg2 query performance for Python to the same level of Java's JDBC driver
Overview
I'm attempting to improve the performance of our database queries for SQLAlchemy. We're using psycopg2. In our production system, we're chosing to go with Java because it is simply faster ...
21
votes
3answers
4k views
How to install psycopg2 with “pip” on Python?
I'm using "virtualenv" and I need to install "psycopg2".
I have done the following:
pip install ...
19
votes
3answers
9k views
DatabaseError: current transaction is aborted, commands ignored until end of transaction block
I got a lot of "DatabaseError: current transaction is aborted, commands ignored until end of transaction block" errors after changed from python-psycopg to python-psycopg2 as Django project's database ...
13
votes
7answers
2k views
How can I speed up update/replace operations in PostgreSQL?
We have a rather specific application that uses PostgreSQL 8.3 as a storage backend (using Python and psycopg2). The operations we perform to the important tables are in the majority of cases inserts ...
9
votes
1answer
642 views
Error Saving geodjango PointField
I have a geo model with a PointField property. Everything works perfectly locally, but when I try to save an instance on the server, I get the following error:
django.db.utils.DatabaseError: invalid ...
8
votes
2answers
2k views
Cannot install psycopg2 on OSX 10.6.7 with XCode4
Trying to install psycopg2 on OSX results in the following:
building 'psycopg2._psycopg' extension
creating build/temp.macosx-10.6-universal-2.6
creating ...
8
votes
1answer
541 views
Which Postgres value should I use in Django's DATABASE_ENGINE?
It's my first time using PostgreSQL 8.4.2 with Django(I have always used MySQL or sqlite3 in the past). Which value should I use for DATABASE_ENGINE in settings.py, postgresql_psycopg2 or postgresql? ...
8
votes
4answers
3k views
How do cursors work in Python's DB-API?
I have been using python with RDBMS' (MySQL and PostgreSQL), and I have noticed that I really do not understand how to use a cursor.
Usually, one have his script connect to the DB via a client DB-API ...
7
votes
1answer
656 views
Recreating Postgres COPY directly in Python?
I have a block of data, currently as a list of n-tuples but the format is pretty flexible, that I'd like to append to a Postgres table - in this case, each n-tuple corresponds to a row in the DB.
...
7
votes
6answers
8k views
How to quote a string value explicitly (Python DB API/Psycopg2)
For some reasons, I would like to do an explicit quoting of a string value (becoming a part of constructed SQL query) instead of waiting for implicit quotation performed by cursor.execute method on ...
6
votes
3answers
1k views
Checking if a postgresql table exists under python (and probably Psycopg2 )
Hello
By using the Psycopg2 of Python library, how can I determine if a table exists, getting a true or false boolean.
5
votes
2answers
2k views
Installing psycopg2 (postgresql) in virtualenv on windows
I installed psycopg2 in virtualenv using easy_install psycopg2. I did not see any errors and looks like installation went fine.. there is an egg file created in the site-packages dir for psycopg2..
...
5
votes
1answer
339 views
What should a Django user know when moving from MySQL to PostgreSQL?
Most of my experience with Django thus far has been with MySQL and mysqldb. For a new app I'm writing, I'm dipping my toe in the PostgreSQL water, now that I have seen the light.
While writing a ...
5
votes
3answers
2k views
Psycopg2, Postgresql, Python: Fastest way to bulk-insert
I'm looking for the most efficient way to bulk-insert some millions of tuples into a database. I'm using Python, PostgreSQL and psycopg2.
I have created a long list of tulpes that should be inserted ...
4
votes
2answers
99 views
Graceful Primary Key Error handling in Python/psycopg2
Using Python 2.7 and
In [150]: psycopg2.version
Out[150]: '2.4.2 (dt dec pq3 ext)'
I have a simple python scripts that processing transactions and writes data to a database. Occasionally there is ...
4
votes
2answers
280 views
python: Why does SQLObject fail in conn.autocommit(1)?
In my server code, there is a call to _SO_fetchAlternateID (nested in some value call), which ultimately calls makeConnection in pgconnection.py.
This call fails on conn.autocommit(1), with the ...
4
votes
3answers
1k views
Query OLAP Mondrian (MDX, XMLA) with a Python interface?
Actually I'm using R + Python with RPY2 to manipulate data and ggplot to create beautiful graphics.. I have some data in a PostgreSQL database, and I'm using psycopg2 to query data.
I'm starting a ...
4
votes
2answers
811 views
Returning a value with psycopg2
Ideally I'd like to be able to do something like:
id_of_new_row = cursor.lastrowid()
in which I get the id of the newly created or modified row. But this isn't available through psycopg2. ...
4
votes
2answers
2k views
ImportError: DLL load failed : - when trying to import psycopg2 library
>>> import psycopg2
Traceback (most recent call last):
File "", line 1, in
File "C:\Python26\lib\site-packages\psycopg2\__init__.py", line 60, in
from _psycopg import BINARY, NUMBER, ...
3
votes
2answers
85 views
SqlAlchemy: getting the id of the last record inserted
I am using SQLAlchemy without the ORM, i.e. using hand crafted SQL statememts to directly interact with the backend db. I am using PG as my backend db (psycopg2 as DB driver) in this instance - I ...
3
votes
1answer
68 views
Error installing psycopg2 on Mac OS 10.6
Hi i am trying to install psycopg2 on Mac 10.6. After i install i get this error when i try to import
import psycopg2
Traceback (most recent call last):
File "<stdin>", line 1, in ...
3
votes
3answers
219 views
Data encoding error
My problem is I got following encoding error while copying data from csv files into a database table.
psycopg2.DataError: invalid byte sequence for encoding "UTF8": 0xf8
HINT: This error can also ...
3
votes
3answers
2k views
Installing psycopg2 into virtualenv when PostgreSQL is not installed on development system
Is it possible to install psycopg2 into a virtualenv when PostgreSQL isn't installed on my development system—MacBook Pro with OS X 10.6?
When I run pip install psycopg2 from within my virtualenv, I ...
3
votes
2answers
728 views
Where can I download binary eggs with psycopg2 for Windows?
I'm looking for binary eggs with psycopg2's binaries for Windows but can't find any.
On http://initd.org/psycopg/download/ there's only source package and link to Windows port of Psycopg which ...
3
votes
2answers
324 views
django: can't adapt error when importing data from postgres database
I'm having strange error with installing fixture from dumped data. I am using psycopg2, and django1.1.1
silver:probsbox oleg$ python manage.py loaddata /Users/oleg/probs.json
Installing json fixture ...
3
votes
5answers
2k views
Escape SQL “LIKE” value for Postgres with psycopg2
Does psycopg2 have a function for escaping the value of a LIKE operand for Postgres?
For example I may want to match strings that start with the string "20% of all", so I want to write something like ...
3
votes
2answers
661 views
How to specify psycopg2 parameter for an array for timestamps (datetimes)
I'd like to run a PostgreSQL query in Python using psycopg2, which filters by a column of type timestamp without timezone. I have a long list of allowed values for the timestamp (rather than a range) ...
3
votes
3answers
817 views
Why isn't psycopg2 executing any of my SQL functions? (IndexError: tuple index out of range)
I'll take the simplest of the SQL functions as an example:
CREATE OR REPLACE FUNCTION skater_name_match(INTEGER,VARCHAR)
RETURNS BOOL AS
$$
SELECT $1 IN (SELECT skaters_skater.competitor_ptr_id ...
2
votes
2answers
56 views
Problems juggling system python and python 27 on Mac Snow Leopard
I had a lot of problems getting geoDjango installed on mac os x snow leopard.
After the dust settled, I realized that the system install of python (2.6) was on the recieivng end of psycopg2
Python ...
2
votes
3answers
126 views
How should I prevent abuse when using web.py's web.database?
I'm writing a quick web.py app and take data from web.input...
import web
urls = (
'/', 'something',
)
app = web.application(urls, globals())
db = web.database(dbn='postgres', db='database', ...
2
votes
1answer
295 views
Use binary COPY table FROM with psycopg2
I have tens of millions of rows to transfer from multidimensional array files into a PostgreSQL database. My tools are Python and psycopg2. The most efficient way to bulk instert data is using ...
2
votes
1answer
129 views
psycopg2: insert multiple rows with one query
I need to insert multiple rows with one query (number of rows is not constant), so I need to execute query like this one:
INSERT INTO t (a, b) VALUES (1, 2), (3, 4), (5, 6);
The only way I know is
...
2
votes
1answer
416 views
psycopg2 installation problem on OSX Lion
I used PIP to install psycopg2 on OSX Lion. But when I try to import from python I get the following errors:
Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05)
[GCC 4.2.1 (Based on Apple Inc. build ...
2
votes
1answer
153 views
Can I use md5 authentication with psycopg2?
After two hours of reading documentation, source code and help-threads, I'm giving up. I can't get psycopg2 to authenticate with a md5-string. According to this thread I don't have to anything besides ...
2
votes
1answer
191 views
DictCursor doesn't seem to work under psycopg2
I haven't worked with psycopg2 before but I'm trying to change the cursor factory to DictCursor so that fetchall or fetchone will return a dictionary instead of a list.
I created a test script to ...
2
votes
2answers
206 views
How to solve Python TypeError?
This is my code below and I try to load data from one database to another. I believe everything works fine but an error occurs and I don't know what this means.
import pymssql, psycopg2
class ...
2
votes
1answer
138 views
multiprocessing + psycopg2 zombie children
I am trying to insert and update a few million rows using psycopg and multiprocessing. Going by the documentation found in http://initd.org/psycopg/docs/usage.html#thread-and-process-safety, each ...
2
votes
3answers
201 views
Efficient way to run select query for millions of data
I want to run various select query 100 million times and I have aprox. 1 million rows in a table. Therefore, I am looking for the fastest method to run all these select queries.
So far I have tried ...
2
votes
2answers
837 views
Can't connect the postgreSQL with psycopg2
It's the first time that I can't find the answer about some tech problems
Here's my problems:
>> conn=psycopg2.connect(database="mydb", user="postgres", password="123",port=5432)
Traceback ...
2
votes
2answers
962 views
Using COPY FROM stdin to load tables, reading input file only once
I've got a large (~60 million row) fixed width source file with ~1800 records per row.
I need to load this file into 5 different tables on an instance of Postgres 8.3.9.
My dilemma is that, because ...
2
votes
4answers
212 views
Python: Regex question / CSV parsing / Psycopg nested arrays
I'm having trouble parsing nested array's returned by Psycopg2. The DB I'm working on returns records that can have nested array's as value. Psycopg only parses the outer array of such values.
My ...
2
votes
6answers
446 views
Postgres Performance Tips Loading in billions of rows
I am in the middle of a project involving trying to grab numerous pieces of information out of 70GB worth of xml documents and loading it into a relational database (in this case postgres) I am ...
2
votes
2answers
157 views
CLUSTER not shrinking table size while running other transactions using Psycopg2
We are running a python process which runs this stored procedure, which import files from a certain directory to the postgres database. These files are first get imported to a in-memory table and then ...
2
votes
1answer
206 views
Python/postgres: Any advantage to converting mxDateTime to built in datetime objects?
Some code I am inheriting uses Python's psycopg2 module to return mxDateTime objects from Postgres database queries. I am guessing this behavior is for historical reasons, but wondering if there there ...
2
votes
6answers
214 views
How to have data structure with both tuple and dictionary characteristic
By refering code at
http://initd.org/psycopg/docs/extras.html#dictionary-like-cursor
>>> rec['data']
"abc'def"
>>> rec[2]
"abc'def"
I was wondering how they manage to make a data ...
2
votes
2answers
371 views
Psycopg2 using wildcard causes TypeError
Currently I am attempting to search a database to grab certain events. My query is as such
SELECT * FROM events WHERE summary ILIKE E'%test%' AND start_time > '2010-10-01'
Simply put I need the ...
2
votes
1answer
1k views
Installing psycopg2 in virtualenv (Ubuntu 10.04, Python 2.5)
I had problems installing psycopg2 in a virtualenv.
I tried different things explained there: http://www.saltycrane.com/blog/2009/07/using-psycopg2-virtualenv-ubuntu-jaunty/
The last thing I tried ...
2
votes
1answer
173 views
Mapping result of psycopg2 into dataframe for R with RPY2
With psycopg2, i get result of query in this form :
[(15002325, 24, 20, 1393, -67333094L,
38, 4, 493.48763257822799,
493.63348372593703), (15002339, 76, 20, 1393, -67333094L, 91, 3,
...
2
votes
5answers
5k views
Why can't I install psycopg2? (Python 2.6.4, PostgreSQL 8.4, OS X 10.6.3)
ORIGINAL MESSAGE (now outdated):
After running python setup.py install I get the following:
Warning: Unable to find 'pg_config' filebuilding 'psycopg2._psycopg' extension
gcc-4.0 -arch ppc -arch ...
2
votes
1answer
273 views
Problem with insert and psycopg2
I'm a newbie in Python and psycopg2 and have problems with a simple insert.
This is my table:
CREATE TABLE tabla
(
codigo integer NOT NULL DEFAULT nextval('dato_codigo_seq'::regclass),
informacion ...