Help

Lists: pgsql-bugs
From: "Paul Bramble" <paul(at)vidiom(dot)com>
To: <pgsql-bugs(at)postgresql(dot)org>
Subject: Help
Date: 2005-08-22 19:52:08
Message-ID: 200508221952.j7MJq5Wo000328@mail.vidiom.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

I am working on a product that uses a database for some elementary permanent
storage. Currently we are using Firebird.

I have been asked to evaluate the product against Postgres, but I have
limited time to do so.

Is there an easy way to get started so I can quickly install Postgress and
load my schema?

Loaded message here - One of the reasons that I choose Firebird was that it
was very, very, very easy to use. I am not having the same experience with
Postgres. Any pointers as to how to get it set up enough to load imy schema
would not only be appreciated, but would be a point in Postgres's favor.

Regards,

Paul Bramble,

Vidiom Inc.


From: Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com>
To: Paul Bramble <paul(at)vidiom(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: Help
Date: 2005-08-23 13:48:58
Message-ID: 20050823064429.J89565@megazone.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs


On Mon, 22 Aug 2005, Paul Bramble wrote:

> Is there an easy way to get started so I can quickly install Postgress and
> load my schema?

You didn't say what kind of system you're running, but getting a packaged
version of PostgreSQL (RPM, DEB, Windows Installer) will probably help on
the install side.

Once it's installed, you'll need to make an actual database and load the
schema file. That might be as simple as doing something like the
following as the postgres user:
createdb dbname
psql dbname -f foo.sql


From: John R Pierce <pierce(at)hogranch(dot)com>
To: Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com>
Cc: Paul Bramble <paul(at)vidiom(dot)com>, pgsql-bugs(at)postgresql(dot)org
Subject: Re: Help
Date: 2005-08-24 02:40:25
Message-ID: 430BDE19.5030805@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

Stephan Szabo wrote:
> On Mon, 22 Aug 2005, Paul Bramble wrote:
>
>
>>Is there an easy way to get started so I can quickly install Postgress and
>>load my schema?
>
>
> You didn't say what kind of system you're running, but getting a packaged
> version of PostgreSQL (RPM, DEB, Windows Installer) will probably help on
> the install side.
>
> Once it's installed, you'll need to make an actual database and load the
> schema file. That might be as simple as doing something like the
> following as the postgres user:
> createdb dbname
> psql dbname -f foo.sql
>

unless its been changed in the later releases, he'll also need to muck with the
default settings in the conf files before he'll be able to connect.