Skip to content

Heroku Dataclipsλ︎

Its very easy to create quick reports on your Heroku Postgres database using Dataclips and share the results with your company.

Heroku Dataclips allow you to write SQL queries that run on Heroku Postgres. You can then share these queries along with the results via a web address.

You can give people the ability to create their own query based on yours and share their version of the query and results. Its kind of Github or Gists for databases.

Finding tables in Heroku Postgresλ︎

SELECT * FROM pg_catalog.pg_tables WHERE schema-name != 'pg_catalog' AND schema-name != 'information_schema'