PostgreSQL is a powerful, open source object-relational database system. Open source since 1996, it has a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. Standards compliance is a major focus of the development team. Postgres runs on all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, Tru64), and Windows.
104
votes
24answers
4k views
What resources exist for Database performance-tuning?
What good resources exist for understanding database tuning on the major engines and advancing your knowledge in that area?
The idea of this question is to collect the shed load of resources that ...
102
votes
17answers
9k views
Would you recommend PostgreSQL over MySQL?
We are currently working with JavaEE and MySQL 5 in our company, but we have some queries, especially delete queries that take > 10 min to execute. We consider to switch to PostgreSQL.
What are the ...
87
votes
23answers
5k views
is email address a bad primary key
Is email address a bad candidate for primary when compared to auto incrementing numbers. Our web application needs the email address to be unique in the system. So, I thought of using email address ...
86
votes
6answers
25k views
Comparison of full text search engine - Lucene, Sphinx, Postgresql, MySQL?
I'm building a Django site and I am looking for a search engine.
A few candidates:
Lucene/Lucene with Compass/Solr
Sphinx
Postgresql built-in full text search
MySQl built-in full text search
...
72
votes
17answers
6k views
Why isn't PostgreSQL as widespread as MySQL?
I'm currently developing a pretty big project, and I'm considering open source databases to use.
One of the main factors I consider is support, and it seems like there is not much support/community ...
54
votes
5answers
26k views
PostgreSQL “DESCRIBE TABLE”
How do you perform the equivalent of Oracle's DESCRIBE TABLE in PostgreSQL (using the psql command)?
49
votes
1answer
2k views
Debug PostgreSQL function using pgAdmin
I refer this to enable the debugger in the PostgreSQL server in order to debugging the plpgsql function by stepping through the codes using the pgadmin.
I have already set shared_preload_libraries ...
48
votes
11answers
13k views
Repairing Postgresql after upgrading to OSX 10.7 Lion
I recently upgraded to OSX 10.7, at which point my rails installation completely borked when trying to connect to the psql server. When I do it from the command line using
psql -U postgres
it ...
39
votes
5answers
17k views
Creating a copy of a database in Postgres
What's the correct way to copy entire database (its structure and data) to a new one in pgAdmin?
38
votes
14answers
20k views
Good ORM for C++ solutions?
Does anyone have a good recommendation for an ORM (Object Relational Mapper) for C++?
Our technology stack is:
IDE/C-Compiler = Borland C++ Builder so ideally something that is known to compile with ...
37
votes
13answers
5k views
Hidden Features of PostgreSQL
I'm surprised this hasn't been posted yet. Any interesting tricks that you know about in Postgres? Obscure config options and scaling/perf tricks are particularly welcome.
I'm sure we can beat the 9 ...
36
votes
10answers
18k views
Insert, on duplicate update (postgresql)
Several months ago I learnt from here how to perform multiple updates at once in MySQL using the following syntax
INSERT INTO table (id, field, field2) VALUES (1, A, X), (2, B, Y), (3, C, Z)
ON ...
33
votes
3answers
23k views
How to log Postgres SQL queries?
Can anyone tell me how to enable logging of all SQL executed by Postgres (8.3)? Thanks!
Edited (more info)
I changed these lines :
log_directory = 'pg_log'
log_filename = ...
31
votes
6answers
12k views
Good Mac OS X Client/GUI for Postgresql? [closed]
Anyone found one of these?
"Sequel Pro" is awesome for MySQL development on Mac OS X, and they say they are working on Postgresql support (see discussion here) but I haven't found anything else in ...
30
votes
16answers
17k views
Is it possible to make a recursive SQL query?
I have a table similar to this:
CREATE TABLE example (
id integer primary key,
name char(200),
parentid integer,
value integer);
I can use the parentid field to arrange data into a tree ...
28
votes
4answers
730 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 ...
27
votes
11answers
14k views
How to reset postgres' primary key sequence when it falls out of sync?
I ran into the problem that my primary key sequence is not in sync with my table rows.
That is, when I insert a new row I get a duplicate key error because the sequence implied in the serial ...
25
votes
12answers
10k views
MySQL vs PostgreSQL for Web Applications
I am working on a web application using Python (Django) and would like to know whether MySQL or PostgreSQL would be better when deploying for production.
In one podcast Joel said that he had some ...
24
votes
11answers
5k views
How can I put a database under git (version control)?
I'm doing a web app, and I need to make a branch for some major changes, the thing is, these changes require changes to the database schema, so I'd like to put the entire database under git as well.
...
23
votes
7answers
16k views
How do you write a case insensitive query for both MySQL and Postgres?
I'm running a MySQL database locally for development, but deploying to Heroku which uses Postgres. Heroku handles almost everything, but my case-insensitive Like statements become case sensitive. I ...
22
votes
4answers
14k views
Copy a table (including indexes) in postgres
I have a postgres table. I need to delete some data from it. I was going to create a temporary table, copy the data in, recreate the indexes and the delete the rows I need. I can't delete data from ...
22
votes
9answers
31k views
How to concatenate strings of a string field in a PostgreSQL 'group by' query?
I am going to answer my own question because I just found the answer, but thought it still worth posting here.
I am looking for a way to concatenate the strings of a field within a group by query. So ...
21
votes
1answer
276 views
How can I query the postgres Point type from clojureql?
How can I query the postgres Point type from clojureql? I wish to use the PostGIS functionality but clojureql does not seem to include this.
21
votes
5answers
8k views
Entity framework PostgreSQL
Can someone tell me how can I get MS Entity Framework working with PostgreSQL. How does Entity Framewok work with Mono? Could you please suggest other similar ORM tools which would run on Mono and ...
20
votes
7answers
13k views
How to handle Ruby on Rails error: “Please install the postgresql adapter: `gem install activerecord-postgresql-adapter'”
Running a Ruby on Rails (RoR) app or Ruby code which uses the ActiveRecord framework, you get the error message:
Please install the postgresql adapter:
gem install
...
20
votes
7answers
12k views
Modify OWNER on all tables simultaneously in Postgresql
How do I modify all tables in a Postgres database to change the owner?
I tried ALTER TABLE * OWNER TO new_owner but it doesn't like the star.
20
votes
2answers
28k views
PostgreSQL Autoincrement
I'm switching from MySQL to PostgreSQL and was wondering how I can do autoincrement values. I saw in the PostgreSQL docs a datatype "serial", but I get syntax errors when using it (in v8.0).
19
votes
4answers
3k views
Quickest way to find out heroku database size
What is the quickest way to find out the current size of my shared database in Heroku?
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 ...
19
votes
10answers
3k views
Is there a free tool to convert mysql dump to postgres
I am trying to move my site from mysql to postgres, I don't know how to do it. Already dumped my mysql database with compatible option. But it's impossible to import the data directly. I wonder if ...
18
votes
2answers
5k views
Rails 3.1 - Pushing to Heroku - Errors installing postgres adapter?
I just upgraded to Rails 3.1 and the first app i've tried to deploy to Heroku has encountered a problem relating to Postgres adapter. I'm able to push the app to heroku but then when i try to migrate ...
18
votes
5answers
10k views
Whats the fastest way to do a bulk insert into Postgres?
I need to programattically insert 10's of millions of records into a postgres database. Presently I am executing 1000's of insert statements in a single "query".
Is there a better way to do this, ...
18
votes
8answers
4k views
MySQL vs PostgreSQL? Which should I choose for my Django project?
My Django project is going to be backed by a large database with several hundred thousand entries, and will need to support searching (I'll probably end up using djangosearch or a similar project.)
...
18
votes
11answers
16k views
How to get a value from the last inserted row?
Is there some way to get a value from the last inserted row?
I am inserting a row where the PK will automatically increase, and I would like to get this PK. Only the PK is guaranteed to be unique in ...
18
votes
5answers
10k views
Possible to perform cross-database queries with postgres?
I'm going to guess that the answer is no based on the below error message (and this Google result), but is there anyway to perform a cross-database query using Postgres?
databaseA=# select * from ...
17
votes
2answers
252 views
Why is ' 2' > '10'?
Why is ' 2' with an initial space bigger than '10'?
select ' 2' > '10';
?column?
----------
t
(1 row)
I tried it with both latin1 and utf8 english collations:
...
17
votes
7answers
7k views
Online SQL syntax checker conforming to multiple databases
Is there any site available online for verifying the syntax which conforms to multiple databases?
For example: If I have a SQL statement with a 'usage' keyword, then the site should throw me an error ...
17
votes
4answers
11k views
How to copy postgres database to another server
I'm looking to copy a production postgres database to a development server. What's the quickest, easiest way to go about doing this?
17
votes
6answers
16k views
How do you create a read-only user in PostgreSQL
I'd like to create a user in PostgreSQL that can only do SELECTs from a particular database. In MySQL the command would be...
GRANT SELECT ON mydb.* TO 'xxx'@'%' IDENTIFIED BY 'yyy';
What is the ...
16
votes
3answers
10k views
What is the PostgreSQL equivalent for ISNULL()
In MS SQL-Server, I can do:
SELECT ISNULL(Field,'Empty') from Table
But in PostgreSQL I get a syntax error. How do I emulate the ISNULL() functionality ?
16
votes
6answers
5k views
Pros/Cons of MySQL vs Postgresql for production Ruby on Rails environment?
I will soon be switching from sqlite3 to either postgres or mysql. What should I consider when making this decision? Is mysql more suited for Rails than postgres in some areas and/or vice versa? Or, ...
16
votes
4answers
7k views
Postgres and Indexes on Foreign Keys and Primary Keys
Does Postgres automatically put indexes on Foreign Keys and Primary Keys? How can I tell? Is there a command that will return all indexes on a table?
15
votes
7answers
7k views
Migrating from MySQL to PostgreSQL
We are currently using MySQL for a product we are building, and are keen to move to PostgreSQL as soon as possible, primarily for licensing reasons.
Has anyone else done such a move? Our database is ...
14
votes
8answers
594 views
Is a 'blackhole' table evil?
Reading to this question i've just learned the existence of the blackhole table trick: basically consist in using a single table to insert data, and then a trigger that split the data in many other ...
14
votes
3answers
5k views
proper hibernate annotation for byte[]
I have an application using hibernate 3.1 and JPA annotations. It has a few objects with byte[] attributes (1k - 200k in size). It uses the JPA @Lob annotation, and hibernate 3.1 can read these just ...
14
votes
14answers
647 views
SQL hidden techniques? [closed]
Possible Duplicate:
Hidden Features of SQL Server
What are those pro/subtle techniques that SQL provides and not many know about which also cut code and improve performance?
eg: I have ...
14
votes
2answers
3k views
Creating a multi-tenant application using PostgreSQL's schemas and Rails
Stuff I've already figured out
I'm learning how to create a multi-tenant application in Rails that serves data from different schemas based on what domain or subdomain is used to view the ...
14
votes
4answers
9k views
how to emulate “insert ignore” and “on duplicate key update” (sql merge) with postgresql?
what's the best way to emulate "insert ignore" and "on duplicate key update" with postgresql ?
14
votes
4answers
3k views
Python PostgreSQL modules. Which is best?
I've seen a number of postgresql modules for python like pygresql, pypgsql, psyco. Most of them are Python DB API 2.0 compliant, some are not being actively developed anymore.
Which module do you ...
14
votes
6answers
32k views
String literals and escape characters in postgresql
Attempting to insert an escape character into a table results in a warning. For example:
create table EscapeTest (text varchar(50));
insert into EscapeTest (text) values ('This is the first part \n ...