DESCR 951 B

123456789101112131415161718192021222324252627
  1. The PostgreSQL Toolbox is a collection of small programs to aid the
  2. PostgreSQL administrator and developer.
  3. * pgcomment parses SQL files which should contain DDL and
  4. (javadoc) comments and can generate the appropriate COMMENT ON
  5. statements or HTML and LaTeX fragments.
  6. * pgstat shows the queries the PostgreSQL server is currently
  7. executing and optionally idle connections.
  8. * listdb lists all databases like the \l+ command in psql.
  9. * dbsize tells the overall size of a single database.
  10. * dbrelationsize tells the size of tables, view, indices,
  11. sequences of a specific database.
  12. * dbstat prints the collected statistics about a database.
  13. * listlock prints locks held by a database.
  14. * xloginfo shows the current write and insert location in the xlogs.
  15. * pg_file2str reads a file from STDIN or the filename given as its first
  16. command line argument and prints the file properly escaped as a
  17. PostgreSQL string literal to STDOUT.