Questions about PostgreSQL query optimisation. In your question please include the full original text of SQL queries, `EXPLAIN(BUFFERS, ANALYZE)` for those queries, and `CREATE TABLE` and `CREATE INDEX` statements or `psql` `\dt+ tablename` output. If you're looking to tune without modifying ...

learn more… | top users | synonyms

3
votes
3answers
55 views

Postgres: Optimizing querying by datetime

I have a table that has a datetime field "updated_at". A lot of my queries will be querying on this field using range queries such as rows that have updated_at > a certain date. I already added an ...
0
votes
1answer
46 views

Quicken my simple sql

select count(*) from user where userid not in (select userid from ship where status in ('1','0')) and field='web'; This simple statement seems to be running a terribly long time, how do I ...
0
votes
1answer
26 views

Futher optimization of Postgres Full-text search on a Cloud Server

I am running Postgres 9.1 on a cloud server (which I'm aware is far from ideal, we are hoping to migrate at some point this year). This server frequently performs full text queries on a table with ...
1
vote
2answers
75 views

Bitmap Heap Scan performance

I have a big report table. Bitmap Heap Scan step take more than 5 sec. Is there something that I can do? I add columns to the table, does reindex the index that it use will help? I do union and sum ...
0
votes
0answers
37 views

PostgreSQL Aggregate groups with limit performance

I'm a newbie in PostgreSQL. Is there a way to improve execution time of the following query: SELECT s.id, s.name, s.url, (SELECT array_agg(p.url) FROM ( SELECT url ...
0
votes
2answers
55 views

Why does this function get exponentially more expensive?

If I create a function that loops through executing a bunch of dynamic queries, the process time seems to get exponentially larger. For the sake of an example, im going to use the following code. Keep ...
3
votes
2answers
83 views

Slow query after big INSERT in Postgres

We are using Postgres 9.2 in RedHat. We have a table similar to the following: CREATE TABLE BULK_WI ( BULK_ID INTEGER NOT NULL, USER_ID VARCHAR(20) NOT NULL, CHUNK_ID INTEGER, STATE ...
3
votes
3answers
121 views

SQL Window Functions - SELECT DISTINCT ORDER BY LIMIT

I have these 3 tables in my PostgreSQL database: artist: id, name album: id, title, year, artist_id song: id, title, album_id Basically each artist has multiple albums, and each album has multiple ...
0
votes
1answer
56 views

Slow update with ST_Contains()

UPDATE tbl SET city=s.city_name FROM shp AS s WHERE ST_CONTAINS(s.city_geom,geom); With the code above i can add exact city to a GPS point. It runs about 45-50 min on 50 million rows. There are ...
1
vote
1answer
31 views

Efficient incremental inserts in postgresql

I use a database to represent a list of files, and some metadata associated to each of them. I need to update regularly this list of files, adding only the new files and deleting files that do not ...
1
vote
1answer
64 views

PostgreSQL cumulative count within last X months

Given the following table: CREATE TABLE cnts( user_id INT, month_d DATE, cnt INT ) I want to query cumulative counts for the last 6 months of each (user_id, month_d) pair. I can do it with ...
0
votes
2answers
68 views

How to optimize multiply join query?

I've got a query like that SELECT DISTINCT p.id FROM person p INNER JOIN person_func pf1 ON p.id = pf1.person_id INNER JOIN Func f1 ON f1.id = pf1.func_id LEFT JOIN ...
1
vote
1answer
83 views

Why does PostgreSQL not use my index to do text prefix search under certain collations?

Consider: create table tab (foo text not null); create index tab_ix_foo on tab(foo); select * from tab where foo like 'pre%'; Postgres doesn't use the index to do that search. When using the ...
0
votes
2answers
71 views

Why is PostgreSQL not using my indexes on a small table?

I have the following table in PostgreSQL: CREATE TABLE index_test ( id int PRIMARY KEY NOT NULL, text varchar(2048) NOT NULL, last_modified timestamp NOT NULL, value int, ...
-1
votes
2answers
67 views

Left outer join performace issues in postgresql

How to improve the performance of query given below select distinct o1.id as c1, a1.id as c2, o1.t1_id as c3, o1.t2_id as c4, o1.t_p_id ...
4
votes
1answer
115 views

Add datetime constraints to a PostgreSQL multi-column expression index

I've got a PostgreSQL table called queries_query, which has many columns. Two of these columns, created and user_sid, are frequently used together in SQL queries by my applition to determine how many ...
1
vote
1answer
55 views

Query and sort by relevance

I have multiple conditions in a query like this: SELECT * FROM image WHERE name LIKE '%text%' AND group_id = 10 LIMIT 1 The WHERE statements consist of 3 conditions: Text match Match of a foreign ...
3
votes
5answers
97 views

Way to try multiple SELECTs till a result is available?

What if I want to search for a single row in a table with a decrementing precision, e.g. like this: SELECT * FROM image WHERE name LIKE 'text' AND group_id = 10 LIMIT 1 When this gives me no ...
1
vote
2answers
79 views

Optimize a max() aggregate that works for “no rows”, too

I have a query that I am trying to optimize for PostgreSQL 9.2: select coalesce(max(id),0) as m from tbl It takes for forever to run, so I figured I could rewrite it as select id from tbl order ...
3
votes
1answer
434 views

Optimize Postgres timestamp query range

I have the following table and indices defined: CREATE TABLE ticket ( wid bigint NOT NULL DEFAULT nextval('tickets_id_seq'::regclass), eid bigint, created timestamp with time zone NOT NULL ...
1
vote
1answer
77 views

How to speed up a complicated query in Postgresql

How to speed up the following query execution? it took 65s just to retrieve 37 records. Any solution guys? (I'm using PostgreSQL 9.1.6 on x86_64-unknown-linux-gnu, compiled by gcc (GCC) 4.4.6 20120305 ...
0
votes
1answer
130 views

Performance of a Postgres query

I have following query, which I want to optimize. SELECT a.household_id household_id, age_of_youngest_woman, b.number_of_children, c.number_of_men, ...
1
vote
2answers
63 views

Why does this query causes sequential scan?

I'm very new to PostgreSQL, forgive me if something obvious is not clear for me. I have a database with ~450 million rows distributed across 6 tables (every table has primary key). When I run the ...
6
votes
2answers
692 views

PostgreSQL query taking too long

I have database with few hundred millions of rows. I'm running the following query: select * from "Payments" as p inner join "PaymentOrders" as po on po."Id" = p."PaymentOrderId" inner join "Users" ...
2
votes
2answers
99 views

Postgres UPDATE x WHERE id IN y

This has probably been asked before, but googling for keywords like "IN" doesn't work very well. This is my query: UPDATE tblCustomer SET type = 2 WHERE idcustomer ...
2
votes
1answer
115 views

PostgreSQL query efficiency

I'm working with PostgreSQL (I'm a rookie in the database world) and I'd like to know your opinion on the efficiency of this kind of queries I found in the code I'm working with. These queries have a ...
3
votes
2answers
959 views

Improving query speed: simple SELECT in big postgres table

I'm having trouble regarding speed in a SELECT query on a Postgres database. I have a table with two integer columns as key: (int1,int2) This table has around 70 million rows. I need to make two ...
2
votes
1answer
174 views

Replace looping with a single query for INSERT / UPDATE

I am writing a function in PostgreSQL. It does basically 3 steps: Fetch a record from source table. check the value from the fetched record in target table, if record is found in target table then ...
0
votes
1answer
68 views

Slow query execution in large partition

I have a DB schema that is partionned on time stamp field, each partition includes 155 time stamps unique vlaues and it is 1.5 GB in size. the schema is very simple and includes time stamp, object id ...
2
votes
2answers
240 views

Postgresql: inner join takes 70 seconds

I have two tables - Table A : 1MM rows, AsOfDate, Id, BId (foreign key to table B) Table B : 50k rows, Id, Flag, ValidFrom, ValidTo Table A contains multiple records per day between 2011/01/01 ...
4
votes
3answers
330 views

Optimization of count query for PostgreSQL

I have a table in postgresql that contains an array which is updated constantly. In my application i need to get the number of rows for which a specific parameter is not present in that array column. ...
0
votes
3answers
429 views

Simple Postgres queries running slow on Heroku

I have a Movie model with around 15,000 items and a Dvd model with 3500. The following queries are simple Rails associations using a Crane Postgres db running on Heroku. I'm wondering why the ...
1
vote
1answer
126 views

PostgreSQL Index Optimization

currently I have the following indeces for the below SQL Select statement. Nevertheless the query seems still slow to me (10.000 records). Do you have any recommendations? index category_id index ...
1
vote
2answers
214 views

Postgres equivalent of MySQL's BENCHMARK() function

I am using Postgresql. I want to test how much time a function takes to execute. Since the fucntion takes only a few milliseconds, I would like to call it in a loop 1000s of times to get an accurate ...
6
votes
3answers
361 views

Postgresql query optimization No inner/outer join allowed

I am given this query to optimize on POSTGRESQL 9.2: SELECT C.name, COUNT(DISTINCT I.id) AS NumItems, COUNT(B.id) FROM Categories C INNER JOIN Items I ON(C.id = I.category) INNER ...
0
votes
2answers
171 views

postgresql - pk versus unique index

In a PostgreSQL 9 database there is a table that contains a serial field X which is a PK (oid enabled), and other fields. Using postgres's pgadmin with that table - a query takes 30 seconds. If I ...
4
votes
2answers
139 views

Index for a WHERE clause with datetime, and more

I'm using Postgres 9.1 and have a horribly slow performing query. The Query: Explain Analyze SELECT COUNT(DISTINCT email) FROM "invites" WHERE ( created_at < '2012-10-10 21:08:05.259200' AND ...
3
votes
2answers
374 views

Efficiently querying a huge time series table for one row every 15 minutes

I have two tables, conttagtable (t) and contfloattable (cf). T has about 43k rows. CF has over 9 billion. I created an index on both tables on the tagindex column on both tables. This column can ...
2
votes
4answers
424 views

Postgresql count+sort performance

I have built a small inventory system using postgresql and psycopg2. Everything works great, except, when I want to create aggregated summaries/reports of the content, I get really bad performance due ...
2
votes
2answers
197 views

How to understand an EXPLAIN ANALYZE

I am not very familiar with looking at EXPLAIN ANALYZE results, I have a huge problem with my queries being too slow. I have tried to read up on how to interpret results from an explain queries, but ...
5
votes
2answers
123 views

Faster search for records where 1st character of field doesn't match [A-Za-z]?

I currently have the following: User (id, fname, lname, deleted_at, guest) I can query for a list of user's by their fname initial like so: User Load (9.6ms) SELECT "users".* FROM "users" WHERE ...
3
votes
4answers
132 views

Order BY turns a 30ms query into a 7120ms query. Known performance issue?

I have a User table with 1m records: User (id, fname, lname, deleted_at, guest) I have the following query which is being run against a postgres 9.1 db: SELECT "users".* FROM "users" WHERE ...
0
votes
1answer
154 views

Why PostgreSQL queries are slower in the first request after server start than during the subsequent requests?

I'm using PostgreSQL 9.1.1 and Rails 3.2.8. Using the development mode of NewRelic I've noticed that several SQL queries takes much longer during the first request following my server start or restart ...