Postgresql 7.1.3 on Win98 - Mailing list pgsql-cygwin

From aman77
Subject Postgresql 7.1.3 on Win98
Date
Msg-id 001f01c18855$88cfc500$0b8310ac@wealth.com.tw
Whole thread Raw
List pgsql-cygwin
** To install the precompiled cygipc

bunzip2 -c <path-to-archive>/cygipc-${version}.tar.bz2 | tar xvf -
 
where "${version}" is the version (e.g., 1.11-1).
To test the CygIPC install, launch a Cygwin shell window from the desktop or Windows Start Menu and type:
ipc-daemon &
It should echo its process number and give no errors.

**To set up and start the first PostgreSQL database (note that commands are CASE SENSITIVE):
1.type the command:
             ipc-daemon &
2.To initialize PostgreSQL, type the command: 
             initdb -W -D /cygdrive/d/apps/cygwin/usr/local/pgsql/data
3.To start PostgreSQL Postmaster, type the command: 
             postmaster -i -D /cygdrive/d/apps/cygwin/usr/local/pgsql/data
 
** Let's go now ~
  1. To create the first database (here called testdb), open a new Cyqwin window and type the command:
    createdb testdb
    Note that you may use the -e option to show the query being sent to the backend.
  2. To test testdb, type the command:
    psql testdb
  3. Note: the     ipc-daemon &     must always be running

pgsql-cygwin by date:

Previous
From: Anil Jangam
Date:
Subject: Bug report.
Next
From: Anil Jangam
Date:
Subject: Can we refer to the column names as FK??