hstore is essentially a hash table type for PostgreSQL columns, hstore values are similar to hashes in Ruby and Perl, associative arrays in PHP, or dictionaries in Python.
1
vote
0answers
17 views
Rails 3 Saving User Searches DataModel
I am working on a piece of my app where the client is wanting the ability for user searches to be saved (these searches are completed by the user completing a set of dropdowns and then entering in a ...
0
votes
2answers
35 views
Convert a stringified array back to array
I use hstore with Postgres 9.2 and Rails 3.2 to store my object like this:
class User
user_hstore = {:user_id =>"123", :user_courses => [1,2,3]}
end
Now, when I retrieve user_courses, I get ...
1
vote
1answer
46 views
Model attribute contains collection of object
I have main model Page, which is container.
The page can have some to-do lists, notes, files and discussions. The idea is to have them in special order.
Page.last.container # [Todolist_obj, ...
1
vote
2answers
25 views
Rails Database Design with Similar models with different attributes
I am designing an application that has many types of "requests" the requests are to be handled in a very similar nature to one another but they contain different data.
They each have about 1/3 of the ...
0
votes
1answer
32 views
Rails Hstore dateTime saving
How do i use datetime values and store and retrieve them using HStore?
I am using this:
module HstoreAccessor
def self.included(base)
base.extend(ClassMethods)
end
module ClassMethods
...
0
votes
1answer
54 views
How to reject update attribute if param is blank or empty?
I have form
View
<%= simple_form_for User.new do |f| %>
<%= f.input :email %>
<%= text_field_tag "user[data[first_name]]" %>
<%= f.button :submit %>
<% end %>
...
0
votes
1answer
36 views
Postgresql error when using Rails' uniq method
I have an Item model that belongs to a Product model. Product has a properties column of hstore type. I want to return a set of unique items that belong to a product, and that do not include the ...
0
votes
2answers
68 views
Installing hstore extension in django nose tests
I've installed the hstore extension successfully, and everything works when I syncdb. (I'm using djorm-ext-hstore)
However, nose creates a new temp database to run tests in, and hstore is not ...
1
vote
1answer
207 views
Use cases for hstore vs json datatypes in postgresql [closed]
In Postgresql, the hstore and json datatypes seem to have very similar use cases. When would you choose to use one vs. the other? Initial thoughts:
You can nest with json; you can't with hstore
...
0
votes
1answer
68 views
Why I get 'undefined method' with simple_form and hstore?
I have
class User < ActiveRecord::Base
attr_accessible :email
validates :email,
presence: true
serialize :data, ActiveRecord::Coders::Hstore
end
and
<%= simple_form_for ...
0
votes
1answer
46 views
How to reject blank and empty attributes during sign_up form?
I have
Model
class User < ActiveRecord::Base
attr_accessible :email
validates :email,
presence: true
serialize :data, ActiveRecord::Coders::Hstore
%w[zipcode first_name].each do ...
0
votes
1answer
101 views
How do I order results by hstore attribute in Rails 4?
How can I order query results by an hstore attribute?
@items = Item.includes(:product).order('products.properties @> hstore("platform")')
Causes
PG::Error: ERROR: column "platform" does not ...
0
votes
1answer
43 views
How to store a python dict in Postgresql hstore
I would like to store this kind of dict in hstore. Is it supported by hstore?
dict= {'fielname':['type', 'precision', 'width', 'data']}
If not, is there a way to flatten that structure to make it ...
0
votes
1answer
31 views
How to collect all atrributes of Model including these from Hstore?
Right now to collect all attributes names I have to:
@attr_names = (User.attribute_names + User.accessible_attributes.to_a - ["", "data"]).uniq
Is there a better way to do that?
0
votes
0answers
42 views
How to dynamically export to excel model with all attributes?
I am exporting products table like in Railscasts tutorial.
How should I properly change view to render Product model with all attributes which I keep in hstore data column.
class Product < ...
0
votes
1answer
53 views
postgres left join using regular expression on a hstore?
i'm trying to do a left join on two tables with hstore columns:
SELECT
d.context->'hostname' AS hostname,
r.data->'Site' AS site,
r.data->'Region' AS rack,
...
0
votes
2answers
94 views
How to store hash-like objects in a PostgreSQL database?
First, a bit of info. My Rails app has a model called Neo which in turn has attributes observed_at, ra and dec.
However, I now found that I need to store sets of this data (in Python-like fashion it ...
1
vote
1answer
41 views
How to avoid overriding hstore records by other people in simple landing sign up forms?
I want to build a simple site with various number of landing pages which have different forms
Example with two fields: email and zipcode
Each form has email field and random number of other fields: ...
2
votes
1answer
47 views
How can I translate a PostgreSQL hstore column into a row?
What SQL query will translate a PostgreSQL hstore column into a regular table where the distinct keys in all of the hstore rows form the columns in the table and the values fill the rows in the ...
1
vote
1answer
101 views
How to create a migration after adding an hstore field? (django-hstore vs. South)
I have an existing model in the database. I want to enhance it with an hstore field. I installed hstore Postgres extension, django-hstore app, changed the appropriate settings in the django project:
...
0
votes
1answer
194 views
Rails Postgresql array of hstore
Does somoone knows if it is possible to have array of hstore in rails 4 ? i tryied with
add_column :orders, :frozen_content, :hstore , array: true
but i got
PG::Error: ERROR: malformed array ...
1
vote
1answer
119 views
How can I use an hstore column type with Npgsql?
I have a table with the following schema:
CREATE TABLE account
(
id serial primary key,
login varchar(40) not null,
password varchar(40) not null,
data hstore
);
I'd like to use an ...
1
vote
1answer
80 views
unique index or constraint on hstore key
I would like to create a unique index or constraint on a specific keys in an hstore column if that key exists. I was hoping the answer would be found somewhere in this other question:
Practical ...
0
votes
1answer
113 views
Newbie confusion on hstore joins with rails
I have two postgres hstore based tables, entity and info, both of which look like this:
Column | Type | Modifiers
...
0
votes
1answer
224 views
Enabling hstore when deploying with rubber
I'm deploying a Rails app that uses PostgreSQL and HSTORE.
To deploy it, I'm ussing rubber.
Everything works, except for HSTORE not being properly enabled. When the migration that contains ...
0
votes
1answer
142 views
write scaling postgresql
i have a very write centric application that uses postgres hstore. my typical work flow is a SELECT followed by a number of UPDATEs or INSERTs (mostly the former). This happens at typically around 500 ...
-3
votes
1answer
147 views
Key value pair in PostgreSQL [closed]
I need to save key value pairs in PostgreSQL database which will have some basic info regarding the record.
After some googling on the topic I found out hstore is one of the options. But even after ...
1
vote
1answer
116 views
How to use SQLAlchemy HSTORE in Pyramid?
I have a model using the new PostgreSQL HSTORE support added to SQLAlchemy 0.8:
class Gateway(Base):
__tablename__ = 'gateway'
id = Column(Integer, primary_key=True)
access = ...
5
votes
1answer
1k views
Setting up Discourse on Ubuntu 12.04 LTS
I have setup a new database for installing Discourse in PostgreSQL. When I run rake db:migrate, it creates most of the tables, but it then fails:
-- execute("INSERT INTO archetypes (name_key, ...
0
votes
1answer
83 views
returning a set of hstore values as a set of records of a table type
I started to experiment with the audit logging function of Postgres as described in http://wiki.postgresql.org/wiki/Audit_trigger_91plus
This function stores the new values of the changed record in an ...
1
vote
2answers
101 views
how to get 2-d hash as an output from hstore column?
In rails app I try to store 2-d hash in postgreSql hstore column, but for output I get something like
{"6/5"=>"{\"color\"=>\"white\"}", "8/1"=>"{\"color\"=>\"white\"}", ...
1
vote
1answer
119 views
activerecord-postgres-hstore after save error ordering in Hash
store as Hash Table with Hstore, wrong ordering in Hash after Save
class Service < ActiveRecord::Base
serialize :properties, ActiveRecord::Coders::Hstore
end
service = Service.new
...
1
vote
1answer
212 views
No operator matches the given name and argument type(s)
I set up my Rails 3.2.x app to use PostgreSQL HStore but I'm getting an error.
It looks like the hstore extension hasn't been picked up by the environment.
I already rebooted my machine, checked ...
0
votes
1answer
71 views
Merge existing columns in POstgreSQL 9.1 hstore column
I have a PostgreSQL 9.1 database table (let's call it MyTable) looking like this:
gid | name | address | phone | colA | colB | colC | colD
...
1
vote
1answer
197 views
Rails 3.1, Postgres 9.1.4, hstore unknown operator error
I'm trying to add an hstore data column to an existing STI model.
Similar to Postgres HStore Errors - Unknown Operator but as far as I can tell, I HAVE installed the hstore extension. I've dropped ...
1
vote
1answer
152 views
Convert PHP Multi-Dimensional Array to Postgres HStore
Has anyone come up with a good solution for converting an array to a Postgres HStore Values?
Pomms Converter, https://github.com/chanmix51/Pomm/blob/master/Pomm/Converter/PgHStore.php, does not work ...
4
votes
2answers
191 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
143 views
A postgresql query that returns one column as json/name value pairs/etc
I have a query that goes has columns like this...
systemid | created | updated
for each system id there is an arbitrary set of name value pairs in a table that looks like this.
systemid | name | ...
3
votes
2answers
75 views
Getting “builder”, “parent_builder”, and “namespace” fields returned from Postgresql/Hstore in rails
I built a simple application, which i am trying to update with a form, but got some weirdness going on.
I have a column 'field_items' which is an hStore. If i call debug on the model in my view...
...
0
votes
1answer
83 views
Group by Hstore Key in PostgreSQL and ROR application
I'm working on a ROR application and i use Hstore with PostgreSQL data base and i'm asking if i can do group by an Hstore key on my table ??
I did this :
select state , count(*) from infractions ...
-4
votes
1answer
235 views
Group by Hstore Key with PostgreSQL [closed]
I'm working on a ROR application and i use Hstore with PostgreSQL data base and i'm asking if i can do group by an Hstore key on my table ??
thanks
0
votes
1answer
136 views
Using Postgres hstore with celery?
Is it possible (and/or would it be effective) to use Postgres' hstore as a broker for celery?
I'm restricted (absent some very compelling reason) to using a Postgres db. I have a django app with ...
1
vote
2answers
44 views
How do I make a script that properly introduces hstore in both 9.0 and 9.1?
I am trying to introduce the hstore type into the database of a project I'm developing. But the problem is that I have a slightly newer version of the Postgres server installed on my development ...
1
vote
1answer
638 views
Hstore and Rails
I'm trying to use Hstore in a Rails 3.2.9 project using the latest version of the activerecord-postgres-hstore gem and I am having a bit of trouble using the store_accessor provided by ActiveRecord ...
0
votes
1answer
148 views
PostgreSQL and hstore in order to make two key value stores
I would like to create two key value stores. One that has a key of a url and a value of a url and the other has a url (this is the value of the other tables) and a score (integer).
I've tried to ...
1
vote
1answer
98 views
What is the maximum number of key value pairs in a single hstore value?
I've got a postgres table (mapfeatures_20120813) with 2 columns (tags and pky) with around 1000 rows. Each row consists of a hstore and a primary key:
tags (hstore) pky
...
1
vote
1answer
552 views
Postgres hstore for time series
I am new to postgres and am experimenting with the hstore extension.Looking for some guidance. I need to support basic reporting on timeseries data for various products that we sell. I have a large ...
0
votes
1answer
188 views
Rails/postgres: What is the best way to store list of phone numbers for one user
So I am little confused on how to store a list of phone numbers in one column. Here are the requirements:
Users can have more than one phone number.
Phone numbers have to be unique, so if user A ...
3
votes
1answer
170 views
PostgreSQL UDF in C using hstore
I'm writing an extension for PostgreSQL in C and I need to use hstore in my UDFs. I can build without errors (using pgxc) but can't use any function in SQL queries.
I've tried PG_LIBS=hstore but got ...
3
votes
1answer
206 views
Renaming hstore key in PostgreSQL 9.2
I've been evaluating PostgreSQL's hstore functionality (9.2) and the only thing the fine manual isn't explicit about is how to rename keys. For instance, how could I rename the key c to ai_count?
...


