Database Locations

From: Keith Gray <keith(at)heart(dot)com(dot)au>
To: SQL <pgsql-sql(at)postgresql(dot)org>
Subject: Database Locations
Date: 2002-04-02 08:16:05
Message-ID: 3CA968C5.57B8CD9E@heart.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Has anyone had any joy with this example taken from documentation.

$ mkdir private_db
$ initlocation ~/private_db
Creating Postgres database system directory /home/olly/private_db/base

$ psql olly
Welcome to psql, the PostgreSQL interactive terminal.

Type: \copyright for distribution terms
\h for help with SQL commands
\? for help on internal slash commands
\g or terminate with semicolon to execute query
\q to quit

olly=> CREATE DATABASE elsewhere WITH LOCATION = '/home/olly/private_db';
CREATE DATABASE

I get an error like:-

olly=> create database test1 with location='/home/olly/private_db';
ERROR: Absolute paths are not allowed as database locations

...or at the command line...

$ createdb --location=/home/olly/private_db test1
ERROR: Absolute paths are not allowed as database locations
createdb: database creation failed

--
Keith Gray

Technical Development Manager
Heart Consulting Services P/L
mailto:keith(at)heart(dot)com(dot)au

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Gordon Clarke 2002-04-02 12:13:05 Upgrading PostgreSQL to 7.1.3
Previous Message jack 2002-04-02 03:41:55 Re: About temporary table