Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 323 Bytes

File metadata and controls

10 lines (9 loc) · 323 Bytes

PostgreSQL

CLI Utils

  • psql Lets you carry out admin functions without needing to now SQL commands
    • log in with postgres user psql postgres
    • exit \q + enter
    • \du list users
    • \? and \help help prompts
    • Backup pg_dump -a -n public URL
    • Restore psql URL -f /path/to/file