Questions tagged [taps]

Taps – simple database import/export app

A simple database agnostic import/export app to transfer data to/from a remote database. Developed by Heroku it is now open source on Github: https://github.com/ricardochimal/taps

75 questions
50
votes
5 answers

How to connect to postgresql using url

I had asked an earlier question which did not get any replies. Basically I get an error invalid database url when I try to do heroku db:push. I figured I can try explicitly providing the database url. I tried: heroku db:push…
Omnipresent
  • 29,434
  • 47
  • 142
  • 186
27
votes
11 answers

Error when pushing data to Heroku: time zone displacement out of range

I run the following command to push the contents of my local database to Heroku: heroku db:push --app my-app From my home computer this works flawlessly but from my work computer I get this error: Taps Server Error: PGError: ERROR: time zone…
Pablo Fernandez
  • 279,434
  • 135
  • 377
  • 622
19
votes
4 answers

filtering single and double taps

When the user single taps my view, i need one specific method to run. When the user double taps, i need another method do take place. The problem is that the double tap triggers the single tap, and it introduce bugs in my logic. I can't use…
Fernando
  • 7,785
  • 6
  • 49
  • 81
14
votes
1 answer

Taps server error `': uninitialized constant Tilt::CompileSite (NameError)

I'm trying to migrate my sqlite3 database to a postgresql, but i can't get passed this error. when i run taps server sqlite://db/development.sqlite3 [user] [password] I keep getting…
Feras
  • 141
  • 4
12
votes
5 answers

Get SQLite error using heroku db:push when I'm using PostgreSQL as development db

I was having problems pushing data from my development db to Heroku. I decided to switch to PostgreSQL as my development db and have updated database.yml and removed the sqlite gem from the gemfiles. The app runs fine against PostgreSQL but when I…
gugguson
  • 819
  • 2
  • 13
  • 32
11
votes
3 answers

taps issue with heroku db:push

first of all, I'm using RVM... and I don't know much about managing gem lists. So, I tried to push my db to heroku using heroku db:push, and I get the following error: $ sudo heroku db:push Taps Load Error: no such file to load -- taps/operation You…
Ringo Blancke
  • 2,444
  • 6
  • 30
  • 54
10
votes
3 answers

heroku db:pull does not work?

I get the following error message: heroku db:pull --debug postgres://USERNAME:PASSWORD@localhost/test Loaded Taps v0.3.23 Warning: Data in the database 'postgres://USERNAME:PASSWORD@localhost/test' will be overwritten and will not be…
Erik
  • 4,268
  • 5
  • 33
  • 49
10
votes
2 answers

How can I make my staging and production have the same data? (Heroku)

I've looked at Heroku's Taps project (http://devcenter.heroku.com/articles/taps) but there's a huge constraint on foreign keys, so I'm uncomfortable with using this. All I want to do is get my production data safely and put it on my staging app so…
dmonopoly
  • 3,251
  • 5
  • 34
  • 49
6
votes
2 answers

How to pull Heroku data into a local SQLite3 database

I'm trying to make a local backup of the data from my Rails application, which is deployed to Heroku, and running into problems. I followed the taps instructions and installed Taps. I get two types of errors. I created a SQLite DB locally and tried…
kateray
  • 2,066
  • 4
  • 18
  • 23
6
votes
4 answers

Installing Heroku Toolbelt has broken Taps

I've been hapilly using the Heroku and Taps gems for a while now, regularly doing a heroku db:push to push my database up to production. This morning I noticed a message that the Heroku gem was deprecated, having been superseded by the Heroku…
Undistraction
  • 42,754
  • 56
  • 195
  • 331
6
votes
4 answers

Heroku db:pull Taps Load Error: no such file to load -- pg

I have gotten the following errors using ruby 1.9.2-p320 with Heroku's Taps-using 'db' commands such as: heroku db:pull --app my-app Which produces errors like: Taps Load Error: no such file to load -- sqlite3 -or- Taps Load Error: no such file to…
likethesky
  • 846
  • 3
  • 12
  • 28
5
votes
2 answers

heroku db:push throws "Taps Server Error: undefined method `symbolize_keys' for nil:NilClass"

I'm in the process of switching to Heroku hosting. I have on my local machine a copy of the current production database (>100 M) and I cannot push it to heroku. I'm getting the same error over and over again: Taps Server Error: undefined method…
Dorian
  • 2,571
  • 23
  • 33
5
votes
3 answers

taps migration failing from sqlite to postgres rails4, ruby 1.9.3

I am trying to migrate my Rails app to Postgresql for heroku however i can't get taps to get the data from my SQLite3 database, here is what i have tried: Create the Postgres database user for the new databases $ createuser f3 Shall the new role be…
David Karlsson
  • 9,396
  • 9
  • 58
  • 103
4
votes
2 answers

Taps error exporting DB to Heroku

I'm trying to pull my postgres db into Heroku from windows. I run $app_folder> heroku db:push postgres://postgres:password@localhost/db_name It sends the schema correctly and some data to the tables but then I got the following error. 19 tables,…
jribeiro
  • 3,387
  • 8
  • 43
  • 70
4
votes
1 answer

heroku db:push not working, using taps gem

I use gem 'sqlite3', '1.3.5' on dev and gem 'pg', '0.12.2' on prod. ruby version ruby 1.9.3p125 (2012-02-16) [i386-mingw32] for a tutorial app am developing. I installed taps gem and tried heroku db:push and this is what I got. HTTP CODE:…
WowBow
  • 7,137
  • 17
  • 65
  • 103
1
2 3 4 5