Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
765 views

Rails migrations with database-specific data types

I'm currently running a Rails migration where I am adding a datatype specific to Postgres, the tsvector. It holds search information in the form that Postgres expects for its built-in text searching ...
3
votes
1answer
3k views

Ruby on Rails: How to sanitize a string for SQL when not using find?

I'm trying to sanitize a string that involves user input without having to resort to manually crafting my own possibly buggy regex if possible, however, if that is the only way I would also appreciate ...
3
votes
1answer
176 views

Disabling the PostgreSQL 8.4 tsvector parser's `file` token type

I have some documents that contain sequences such as radio/tested that I would like to return hits in queries like select * from doc where to_tsvector('english',body) @@ ...
2
votes
1answer
62 views

How do I optimize this full text search query? (tsvector) (1.5 mil rows)

I currently have a full text search query in PostgreSQL (see below) that scans through a single table of 1.5 million rows to find all the items that match "All" terms as well as "Any" term. The query ...
2
votes
1answer
143 views

PostgreSQL tsvector tsquery Bug?

is this a bug or a feature? I've created an index on a tsvector attribute (without using a dictionary). The query SELECT title FROM table WHERE title_tsv @@ to_tsquery('basic') and title_tsv @@ ...
2
votes
1answer
1k views

Postgres full text search across multiple related tables

This may be a very simplistic question, so apologies in advance, but I am very new to database usage. I'd like to have Postgres run its full text search across multiple joined tables. Imagine ...
1
vote
1answer
70 views

Is there a simple method to remove the occurrence of lexeme in a tsvector?

I've got a tsvector column in a table and I would like to be able to remove a lexeme from the tsvector. I've started playing around with ts_stat to rebuild a new tsvector, but it seems quite ...
0
votes
0answers
111 views

PostgreSQL tsvector: searching for special characters [closed]

Possible Duplicate: PostgreSQL tsvector configuration: how to allow special characters? another question regarding a PostgreSQL tsvector. How can I state a query that returns all records ...
0
votes
2answers
348 views

PostgreSQL to_tsquery that emulates LIKE

I'm looking for a way to emulate something like SELECT * FROM table WHERE attr LIKE '%text%' using a tsvector in PostgreSQL. I've created a tsvector attribute without using a dictionary. Now, a query ...
0
votes
1answer
282 views

Retrieving the most common keywords from a tsvector column

I'm considering adding a tsvector column to an existing table that will hold possible search terms for multiple columns in that same table (e.g. the tsvector column will equal to_tsvector(header || ' ...