User Tools

Site Tools


postgres:postgresql

This is an old revision of the document!


PostGreSQL

Open sql cli interface

psql -U [username] -W [password]

Creating/Deleting users

createuser -S -D -R -P -h localhost -U postgres [username]
dropuser [username]

Creating a database

createdb -O [owner] -h localhost [dbname]

Import/export a database

psql -U [username] -W [password] < dump.sql
pg_dump -U [username] -h localhost [-t [table]] [dbname] > dump.sql
postgres/postgresql.1238998303.txt.gz · Last modified: 2009/04/06 08:11 by deva