2009-04-29

Fastest way to create database in PostgreSQL

This will create database and it's associated role from Linux shell:
su postgres
createuser -SDRPE user
createdb -E UTF8 -O user database

No comments:

Post a Comment