postgresql - postgres - ¿Cómo usar pg: psql en heroku?
heroku postgres pricing (2)
Ejecuta esto
heroku pg:psql -c "command" --app "name-app"
muestra
heroku pg:psql -c "/?" --app app-sample
Estoy tratando de detectar mi db en el terminal heroku de esta manera:
myapp@ubuntu:~/RubymineProjects/myapp$ heroku pg:info
The plugin heroku-sql-console has been deprecated. Would you like to remove it? (y/N) n
=== HEROKU_POSTGRESQL_JADE_URL (DATABASE_URL)
Plan: Dev
Status: available
Connections: 1
PG Version: 9.1.6
Created: 2012-10-10 19:59 UTC
Data Size: 9.1 MB
Tables: 32
Rows: 2802/10000 (In compliance)
Fork/Follow: Unsupported
Entonces, lo intenté:
myapp@ubuntu:~/RubymineProjects/myapp$ heroku pg:psql
The plugin heroku-sql-console has been deprecated. Would you like to remove it? (y/N) n
psql (9.1.7, server 9.1.6)
SSL connection (cipher: **-**-****-**, bits: 256)
Type "help" for help.
Necesito enumerar todos los registros de los usuarios:
dbfjinfaes61gb=> select * from users
dbfjinfaes61gb->
Pero arriba, no pasó nada, ¿qué me falta aquí?
Necesita un punto y coma al final de la consulta:
select * from users;