0
votes
1answer
24 views

Indexing column for full text search

I have column col with data type CHARACTER VARYING I need that index this column as gin index. If trying directly set gin index to column, returned error: data type character varying has no ...
0
votes
2answers
17 views

See all indexes and appropriate columns for table

How to see all existed indexes for table? for example given table mytable, how to see his every index with appropriate columns?
1
vote
2answers
40 views

PostgreSQL create index on cast from string to date

I'm trying to create an index on the cast of a varchar column to date. I'm doing something like this: CREATE INDEX date_index ON table_name (CAST(varchar_column AS DATE)); I'm getting the error: ...
0
votes
2answers
35 views

Does its performance critical to define low cardinality column as int and not text

I have a column with 4 options. The column is define as text. The table is big table 100 millions of record and keep going. The table use as report table. The index on the table is - ...
1
vote
2answers
71 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 ...
2
votes
1answer
34 views

Indexes in Postgresql

We have a table users (userid, username, category, pincode) in postgresql If we create indexes like: create index category_idx(category) on users; create index category_pincode_idx(category, ...
1
vote
1answer
38 views

Fulltext Postgres

I created an index for full text search in postgresql. CREATE INDEX pesquisa_idx ON chamado USING gin( to_tsvector( 'portuguese', coalesce(titulo,'') || coalesce(descricao,''))); When I run this ...
1
vote
0answers
60 views

Why PostreSQL 9.2 does not use index scan if it can? [migrated]

My PosgreSQL planner (9.2) does not pick index and rather choose to do seq scan. Here is my table. The index I am talking about is name_left_prefix cwu=# \d web_city; ...
0
votes
1answer
69 views

Is it faster to LIKE 2 columns on 100k records or one column on 200k records? [closed]

Suppose I have a table with column_a and column_b, containing 100k records. I need to match either column_a OR column_b. Will it be faster to create a new table containing only one column to match ...
1
vote
1answer
20 views

Posgresql tsvector parse include xml tags in search

We store "broken" xml in a text field in a table. Fixing xml is not currently possible, so normal use pattern is to search through it using ~* E'my_regex' in where clause. The challenge is that size ...
4
votes
2answers
112 views

Why is PostgreSQL (9.1) not using index for simple equality select?

My table lead has an index: \d lead ... Indexes: "lead_pkey" PRIMARY KEY, btree (id) "lead_account__c" btree (account__c) ... "lead_email" btree (email) "lead_id_prefix" btree (id ...
0
votes
3answers
48 views

List matching records in PostregSQL

I am working on search section where comparing input values with the stored records. Database having value like AB 09 C D 1234. I have explode (with space) input string to match with stored value but ...
1
vote
1answer
81 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 ...
4
votes
1answer
48 views

Efficiently query table with conditions including array column in PostgreSQL

Need to come up with a way to efficiently execute a query with and array and integer columns in the WHERE clause, ordered by a timestamp column. Using PostgreSQL 9.2. The query we need to execute ...
1
vote
1answer
37 views

How to find implicitly generated indexes on postgresql

Is there any way to detect if an index was generated automatically by the DBMS when adding, e.g. the primary key or a unique constraint? At the moment I try to fetch all the indexes of an table by ...
4
votes
2answers
60 views

Is it worth Indexing day_of_week column?

I have a users table that has a day_of_week column, it is an integer(0...6). Every day I have to run a script and iterate over the users of that day. So, should I mark this column with an index for ...
3
votes
1answer
137 views

PostgreSQL: Create an index for fields within a composite type?

Is it possible to have an index on a certain field of a composite type? Assume, for instance, I create a type CREATE TYPE complex AS ( r double precision, i double precision ); ...
0
votes
1answer
74 views

Disadvantages of removing unused foreign key indexes?

Foreign key indexes are never used as you can see in pg_stat_user_indexes table. I want to remove them. Are there any disadvantages of removing foreign keys indexes due to non-usage. db=# SELECT * ...
2
votes
1answer
137 views

How to write index query in postgresql [duplicate]

in sql server index query written as follows SELECT * FROM TabEmp WITH (INDEX(idx_TabEmp)) in same way how to write query in postgresql and how to use indexes in postgresql.
1
vote
2answers
78 views

How can I prevent Postgres from inlining a subquery?

Here's a slow query on Postgres 9.1.6, even though the maximum count is 2, with both rows already identified by their primary keys: (4.5 seconds) EXPLAIN ANALYZE SELECT COUNT(*) FROM tbl WHERE id IN ...
0
votes
1answer
58 views

how can I detect gin and gist

how can I detect GIN and GiST indexes in postgresql? I am looking for if an database of postgres use fulltext. I think that a table use GIN o GiST then is using fulltext. Thanks you. Hello, ok I ...
8
votes
2answers
49 views

Erratic indexed query performance in PostgreSQL

Need help regarding performance of a query in PostgreSQL. It seems to relate to the indexes. This query: Filters according to type Orders by timestamp, ascending: SELECT * FROM the_table WHERE ...
4
votes
2answers
170 views

Why do Postgres Hstore indexes work for ? (operator) and not for EXIST (function)?

http://www.postgresql.org/docs/9.2/static/hstore.html states: hstore has GiST and GIN index support for the @>, ?, ?& and ?| operators Yet the indexes don't work for the EXIST function, ...
0
votes
2answers
180 views

PostgreSQL index not used for query on range

I'm using PostgreSQL (9.2.0) and have a table of IP ranges. Here's the SQL: CREATE TABLE ips ( id serial NOT NULL, begin_ip_num bigint, end_ip_num bigint, country_name character varying(255), ...
3
votes
2answers
110 views

Why do I get a 'Hash Join' and FTS on this PostgreSQL query?

I'm trying to optimize the following scenario: In worded format: I have 2 tables, alerts and user_devices; in user_devices we track whether a device coupled to a user_id wants to get notifications or ...
1
vote
1answer
89 views

SCROLL CURSOR to first search-result using an INDEX

Problem: I want to provide my users with an Excel-Grid-like Client-Side Application. That client accesses the PostgreSQL-Server over a Network-Connection. The client offers a "Find"-Functionality. ...
1
vote
1answer
76 views

Postgresql - using index to filter rows in table with above 100mln rows

I have table with above 100mln rows. I have to count, and extract rows as in following query. The query runs verly long. Explain shows that query doesn't use b-tree index which is created on ...
1
vote
3answers
119 views

Increase PostgreSQL query performance using indices

I have a Rails app on a Postgres database which relies heavily on queries like this: SELECT DISTINCT client_id FROM orders WHERE orders.total>100 I need, essentially, the ids of all the clients ...
1
vote
2answers
136 views

PostgreSQL Index performance issue

I have a PostgreSQL database which contains a lot of rows ~160,000,000. The database is basically a set of network logs. There is a column called time which is a time stamp. Basically for every unique ...
4
votes
3answers
200 views

Postgres min function performance

I need the lowest value for runnerId. This query: SELECT "runnerId" FROM betlog WHERE "marketId" = '107416794' ; takes 80 ms (1968 result rows). This: SELECT min("runnerId") FROM betlog WHERE ...
2
votes
2answers
61 views

Display another field in the referenced table for multiple columns with performance issues in mind

I have a table of edge like this: ------------------------------- | id | arg1 | relation | arg2 | ------------------------------- | 1 | 1 | 3 | 4 | ------------------------------- | 2 ...
1
vote
2answers
86 views

How to specify a multiple column index correctly in Rails

As shown in this question: how to make column unique and index it in Rails Migration , you can write: add_index :the_table, [:foo_column, :bar_column], :unique => true to add an multiple column ...
3
votes
4answers
129 views

Query performance in PostgreSQL using 'similar to'

I need to retrieve certain rows from a table depending on certain values in a specific column, named columnX in the example: select * from tableName where columnX similar to ...
0
votes
1answer
33 views

How to know which attributes are used on GROUP_BY in Rails

I am improving the database tables by adding indexes where appropriate. I'd like to add indexes to attributes that are used on GROUP_BY queries. Is there a way to automagically know which fields ...
2
votes
1answer
214 views

retrieving keys from a GIN index on a tsvector column in Postgres 9.1

I've got a collection of documents that I'd like to do some full text searching on in Postgres 9.1, so adding them as the contents of a tsvector and then creating a GIN index on this column seems ...
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
3answers
131 views

Is the speed of a PostgreSQL SELECT adversely affected by too many indexes on the table?

I have read that when having a lot of indexes on a database It can seriously hurt the performance but in the PostgreSQL doc I can't find anything about it. I have a very big table with something like ...
7
votes
4answers
353 views

PostgreSQL: How to structure and index time-related data for optimal query performance?

The Problem: I have time-related data in my database and I am struggling to organize, structure and index that data in a way so that users can retrieve it efficiently; even simple database queries ...
1
vote
3answers
866 views

Create index on json field in PostgreSQL 9.2

I have a few tables with json columns and would like to build an index on these columns. However, I get a default operator class (http://www.postgresql.org/docs/9.2/static/sql-createopclass.html). Has ...
2
votes
2answers
246 views

postgres partial index

I have a table with about 30 columns, column a integer not null, b boolean not null and c integer not null among them. And there is a query that is often run with a = 2 and b is true and c = ...
0
votes
1answer
65 views

Operator Class of an Index in Postgresql

How can I learn which operator class is used by an already created index in Postgresql?
2
votes
2answers
272 views

How to access array internal index with postgreSQL?

This is my (perhaps usual for you) non-optimized solution: Workaround for PG problem with non-optimized internal function: CREATE FUNCTION unnest_with_idx(anyarray) RETURNS TABLE(idx integer, val ...
1
vote
1answer
42 views

Immediate index definition

What does it mean for an index to be 'immediate' ? I'm referring to 'index' in the SQL standards, but perhaps more specifically as per this PostgreSQL documentation.
1
vote
1answer
125 views

Creating a Foreign Key based on an index name rather than table(columns)

I have a table with a timestamp field onto which I've created a composite index. CREATE INDEX "IDX_NAME_A" ON TABLE "A" (a_id, extract(year FROM created_at)) I have another table which stores a ...
4
votes
4answers
851 views

Performance Tuning : Create index for boolean column

I have written a daemon processor which will fetch the records from one database and insert them into another database for synchronizing. It will fetch records based on each record indication flag ...
0
votes
1answer
44 views

Postgres not using index for “created_time / 60”

I have a system that saves statistics for servers in a network. Later a user is able to consume all the data and plan their growth. Thus it is important to summarize the data into a graph ie across an ...
2
votes
3answers
123 views

Why is my SQL query not using the index?

This is my query: explain analyze SELECT levenshtein('google', lower(s."Name"), 2, 2, 1), d."Domain" FROM analyst_sld s, analyst_domain d WHERE levenshtein('google', lower(s."Name"), 2, 2, 1) < ...
1
vote
1answer
306 views

Why is my postgreSQL index not being used?

When I use the following query, the response time is really terrible(sometimes over a minute!). select * from cdr where start_time < now() - interval '4 hours' and final = 0 limit 50 I am ...
3
votes
2answers
205 views

Slow PostgreSQL query in production - help me understand this explain anayze output

I have a query that is taking 9 minutes to run on PostgreSQL 9.0.0 on x86_64-unknown-linux-gnu, compiled by GCC gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-46), 64-bit This query is automatically ...
0
votes
2answers
69 views

which fields should go in an index?

I hae a query in a postgresql database which takes too much time and I like to add an index to make it quicker, but I don't know which fields shouls I include in the index cause many of them belong to ...

1 2 3