Open source RDBMS (relational database management system) when used in conjunction with the Ruby on Rails framework.

learn more… | top users | synonyms

2
votes
0answers
6 views

Rails 3.2 schema dump turns all UUID columns to text and mangles array declarations with postgres_ext gem

Using Ruby 2.0.0-p195 with Rails 3.2.13 and v0.3.1 of the postgres_ext gem. It seems that I often have trouble with schema dumps (not SQL structure dumps) using Rails wherein the schema dumper ...
0
votes
1answer
19 views

Rails Heroku database missing data

I'm new to Rails and Heroku. I don't partly understand system of databases (testing, production, development). I created two Rails apps. First with Rails' default sqlite db and second with ...
0
votes
0answers
16 views

Streaming replication in postgresql 9.1 — sender and receiver processes aren't running [migrated]

I've followed this guide, and cross-referenced the primary postgresql wiki in order to set up replication. I've configured postgresql.conf and pg_hba.conf as directed, and then restarted the master ...
0
votes
1answer
24 views

Rails PG::Error Presentation and Handling of Unique Constraint

I am developing on Rails 4 with postgres and devise. I have the following User model: # user model class User < ActiveRecord::Base extend FriendlyId friendly_id :username, :use => :slugged ...
2
votes
0answers
35 views

How can I include big support databases in my RSpec tests?

I have 3 large read-only databases that support my Rails 3.2 application in that values in them are examined and some of them stored along with ancillary information in my main database. I have these ...
0
votes
0answers
14 views

Cannot create PostgreSQL user [migrated]

I'm using PostrgreSQL 9.1.9 on Ubuntu 13.04. Using the following StackOverflow question, I tried to create a user/role in postgressql: ...
0
votes
1answer
35 views

Why is Brew installed postgres looking here?

Why is brew installed postgres looking for /tmp/.s.PGSQL.5432 when I specified /var/pgsql_socket (unix_socket_directory = '/var/pgsql_socket') in my postgresql.conf? Install was successful. I can ...
0
votes
1answer
29 views

Rails: last migration reapplied

Sometimes rake db:migrate tries to run migrations which have already been successfully migrated (without any errors). When I check the schema_migrations table, the repetitive migration is not there. ...
0
votes
0answers
17 views

Strange ActiveRecord bug with join table (Postgres)

I came upon this bug when trying to make a Kickstarter clone for fun. My model for the join table does not work when called directly. When I try it in rake console, I have to type in the plural ...
1
vote
1answer
73 views

Why can't my app modify development postgresql database after migrating from SQLite?

I switched my development database from SQLite to postgresql. My app worked in both development and production (Heroku, postgresql) but now I cannot modify, delete or create records in the new ...
1
vote
0answers
60 views

heroku pg:transfer - receiving error during upload of postgresql db

I am trying to upload my local database to production and I keep running into the following error while processing: $ heroku pg:transfer --from postgres://username:password@localhost/blog_develo ...
0
votes
0answers
49 views

Postgres error on Heroku causing ActiveRecord::StatementInvalid

I run a Rails app / website (Rails v.3.0.3) with some 10.000 pageviews a day but sometimes, when Digg.com or similar links to it, I get 2 or 3 times that traffic. When that happens I tend to get a ...
0
votes
0answers
34 views

Abstracting full text search with postgres

So I have a database on a Rails application that uses postgres for full text searching on one model. I would like to abstract this to do full text searching on several different models with it's own ...
0
votes
0answers
48 views

Active Record locking Postgres database, possibly related to Carrierwave?

I'm seeing occasional timeouts in my Rails 3.2 app that seem to be the result of the database locking rows for an extended period of time. I am using a production level DB on Heroku. I see many ...
2
votes
0answers
61 views

Rake migrate Error - database doesn't exist

I have a padrino project that uses data mapper and postgres. When I run padrino rake dm:create it says that the database is created. However, when I run padrino rake dm:auto:migrate, I get the error - ...
1
vote
0answers
70 views

Reconnect after a PG::Error SSL SYSCALL error in Rails on Heroku

I've recently experienced H12 request timeouts on Heroku caused by PG::Error SSL SYSCALL error: EOF detected. Relevant portions of the stack trace include: 2013-04-05T22:07:02+00:00 heroku[router]: ...
1
vote
0answers
58 views

Postgres periodically slows down on heroku RoR application

I faced with periodic RoR 3 application unavailability. Usually I have 15 minutes unavailability period each day. The problem doesn't relates with application load and I can't find any errors in logs. ...
0
votes
0answers
59 views

Complex SQL query Rails

Lesson.joins(:custom_attributes).where("custom_attributes.attribute_name_id = 103 AND cast(custom_attributes.value as float) BETWEEN 0 AND 61").where("custom_attributes.attribute_name_id = 103 AND ...
0
votes
0answers
79 views

rake aborted! undefined method `isthreadsafe' for class `Module' (pg gem)

Still pretty new to rails and postgresql. Anytime I run a rake command I get the following trace: rake aborted! undefined method `isthreadsafe' for class `Module' ...
0
votes
0answers
53 views

ransack search customization using PostgreSQL function

I have an Order model and a Payments model. Order has many Payments. I'm performing a search on the order model using ransack. I have the following association fields for payments in the search ...
0
votes
4answers
86 views

Batch insertion in rails 3

I want to do a batch insert of few thousand records into the database (POSTGRES in my case) from within my Rails App. What would be the "Rails way" of doing it? Something which is fast and also ...
0
votes
0answers
44 views

PostgreSQL group_by date and Rails

I'm new so excuse the phrasing. I've created a rails app that uses highcharts and postgresql. The chart shows how many times something has been shared on Facebook. It groups and counts all the ...
0
votes
0answers
50 views

Rails app breaks intermittently due to Postgres explain statement

Rails 3.2.12 app with an external PG DB which has a customers table. I have a local PG DB that has a "geocodes" table. The external customer table may or may not have latitude & lingitude for ...
1
vote
0answers
37 views

Unable to retreive excerpt from Postgres using pg_search gem

Update First of all, there is no method "context". That was a word my brain made up at some point and stuck with. Obviosuly I should've been running .excerpt(). Second, I was running the command ...
0
votes
1answer
44 views

How do I .group and .sum in a rails model using Postgres?

I have a functioning method in my development environment (SQLite) that looks this: def self.ytd Production.find( :all, conditions: ["year == ?", Time.now.year], select: "carrier_id, ...
1
vote
1answer
90 views

Backup/Restore of a postgres specific schema to/from a sql file on ruby on rails

I have saas app using multi-tenant with postgresql. Any accounts have each schema, subdomain, admin panel and any account is given the facility to backup/restore its own schema to sql file using click ...
1
vote
1answer
55 views

What is a straightforward way to connect to Postgres.app with dbext (in Vim)?

When I try to connect to my Postgres.app db using dbext, I get the following error: dbext:PostgreSQL requires a '$HOME/.pgpass' file in order to authenticate. This file is missing. The binary ...
0
votes
0answers
123 views

Prawn not working in Production

Prawn is working fine in development environment. But in production im getting these logs and keeps looping without loading the app, ... 19x.xxx.xxx.xxx: Connecting to database specified by ...
0
votes
1answer
55 views

How Can I Speed Up The Sending Of Emails Using ActionMailer from my Mac Mini Server?

I am currently using a Mac Mini Server running OS X Server. The server hosts several Ruby on Rails applications using Phusion Passenger where two of them uses a PostgreSQL database. One of these ...
1
vote
0answers
130 views

pg gem install fails saying version is too old

I am trying to install the pg(postresql) gem for ruby. I am receiving this error: postgres/9.2-pgdg/bin/64/pg_config Using config values from /location/to/install/postgres/9.2-pgdg/bin/64/pg_config ...
0
votes
1answer
123 views

Import data from text file into PostgreSQL. “Postgres_Copy” Gem

I am using PostgreSQL with ruby and rails app and have Postgres_copy gem installed https://github.com/diogob/postgres-copy I have hotels table and want to import text file using function pg_copy_from ...
0
votes
2answers
27 views

How can I increase a field in a rails gem?

I'm getting this error: SQL (31.1ms) INSERT INTO "read_marks" ("readable_id", "readable_type", "timestamp", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["readable_id", nil], ...
0
votes
1answer
101 views

Rails active record query for search filters

Looking at the railscasts.com, I am wondering how Ryan implemented the search filters for the site. If the search param does not match anything in the database, then he is returning ALL records (for ...
0
votes
0answers
35 views

scope to order on polymorphic belongs to association attribute

i got a polymorphic belongs to association on a model. i want a scope that orders my models on an associated column. class Notifier < ActiveRecord::Base belongs_to :source, :polymorphic => ...
0
votes
0answers
40 views

ActiveRecord::RecordNotUnique when setting entire collection

Originally Pages were going to have multiple Items, but the specs changed. It's still a has_many relationship but there's a single text field to set it. So in my Page model I have the following: ...
0
votes
0answers
43 views

Rails select by group with Postgresql?

I have a model named Program, which has 'directory_id'、'id'、'user_id' columns, I want to select all the programs group by directory: @programs = Program.select("programs.directory_id, programs.id, ...
1
vote
0answers
43 views

Query where a post has tags, which needs to be in every category

I have a post which can have tags and a tag has a category. Now I need to create a scope of "published". A post can only be published if it has tags in every available category. So in other words. If ...
0
votes
2answers
66 views

psql excluding records base on another table

i am using postgres and wishing to exclude users that are currently in one table from another. at present i am trying do this via the ActiveRecord system within Rails. So i need it to get the ids ...
-1
votes
1answer
59 views

Resetting password of PostgreSQL on ubuntu [closed]

i am using Ubuntu.some days before i installed Postgresql database for ruby on rails.i created a superuser for database server and i forgot the password of postgresql superuser.can any one please help ...
0
votes
1answer
57 views

Selecting all rows where an array intersects in postgresql

Currently I'm trying, in a rails 3 application, to select all objects where two arrays have some overlap. I've tried the following: Contact.where("possible_unique_keys && ?" ...
0
votes
1answer
164 views

Heroku rake db:migrate aborted with 'PG::Error:'

I'm trying to run my app on Heroku, and I can't get past the 'rake db:migrate' command. I keep getting this error: rake aborted! An error has occurred, this and all later migrations canceled: ...
0
votes
1answer
17 views

Getting to Run PostgresSQL and Rail on Mac

I am using OSX 10.8 ( looks like some version on Postgres is installed by default ) but still I did these steps one by one and they all succeeded . brew install postgresql initdb `brew ...
0
votes
1answer
140 views

Get all data from all tables (Postgresql)

data = Program.joins(:program_schedules, :channel). where( "program_schedules.start" => options[:time_range], "programs.ptype" => "movie", ...
1
vote
3answers
2k views

Postgresql adapter (pg): could not connect to server

I get this error every this I run my Rails app (It cannot connect to my local Postgresql) /Users/leonardo/.rvm/gems/ruby-1.9.3-p362/gems/activerecord-3.2.11/lib/ ...
1
vote
1answer
118 views

PostgreSQL rake db:create Error in local environment

I continue to run into issues whenever I use postgreSQL for Rails app development in my local environment. I'm running on Mac OS X 10.7. I'm aware this version comes with a pre-installed Postgres ...
0
votes
4answers
62 views

How can I sort a list of ActiveRecords by an attribute length?

I have an object like this: irb(main):076:0> hints = Hint.where("sentence LIKE ?","%你%") Hint Load (4.0ms) SELECT "hints".* FROM "hints" WHERE (sentence LIKE '%你%') [ [0] ...
2
votes
2answers
59 views

How to manage the wals dir on a PostgreSQL replication server?

I have two PostgreSQL 9 servers running on Amazon EC2. One is the master, the other is a replication server in standby. The replication server is continuing to fail as the hard drive fills up. It ...
1
vote
2answers
419 views

Rails string array and PostgreSQL

I have a Rails model named Container with a column named products. It is a string array as supported by Postgres and the 'postgres_ext' gem. The relevant portion of the GEMFILE is: gem 'rails', ...
4
votes
3answers
777 views

Millisecond resolution of DateTime in Ruby

I have a string like 2012-01-01T01:02:03.456 that I am storing in a Postgres database TIMESTAMP using ActiveRecord. Unfortunately, Ruby seems to chop off the milliseconds: ruby-1.9.3-rc1 :078 > ...
1
vote
0answers
66 views

How to find a set of missing dates in a table from date range query

There are some stackoverflow posts related to my question but not all that similar. I would like an efficient and somewhat elegant(if possible) solution as to get an array of missing dates after ...

1 2 3 4