Thread: pgaccess removed from 6.5.2?

pgaccess removed from 6.5.2?

From
Palle Girgensohn
Date:
The release notes talk about pgaccess beeing updated, but it is removed
from the tarball? Only docs and demos are left; Makefile and tcl code is
gone. How come?

/Palle

Re: [GENERAL] pgaccess removed from 6.5.2?

From
Bruce Momjian
Date:
> The release notes talk about pgaccess beeing updated, but it is removed
> from the tarball? Only docs and demos are left; Makefile and tcl code is
> gone. How come?
>
> /Palle

Not sure how that happened.  I see it here.

--
  Bruce Momjian                        |  http://www.op.net/~candle
  maillist@candle.pha.pa.us            |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026

Re: [GENERAL] pgaccess removed from 6.5.2?

From
Palle Girgensohn
Date:
Bruce Momjian wrote:
>
> > The release notes talk about pgaccess beeing updated, but it is removed
> > from the tarball? Only docs and demos are left; Makefile and tcl code is
> > gone. How come?
> >
> > /Palle
>
> Not sure how that happened.  I see it here.
>
> --
>   Bruce Momjian                        |  http://www.op.net/~candle
>   maillist@candle.pha.pa.us            |  (610) 853-3000
>   +  If your life is a hard drive,     |  830 Blythe Avenue
>   +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026


Well, it's not in the tarball. Here's an ls -l src/bin/pgaccess
total 7
drwxr-xr-x   7 girgen  wheel  512 Sep 16 02:22 ./
drwxr-xr-x  21 girgen  wheel  512 Sep 16 02:22 ../
drwxr-xr-x   2 girgen  wheel  512 Sep 16 02:22 demo/
drwxr-xr-x   3 girgen  wheel  512 Sep 16 02:22 doc/
drwxr-xr-x   2 girgen  wheel  512 Sep 16 02:22 images/
drwxr-xr-x   4 girgen  wheel  512 Sep 16 02:22 lib/
drwxr-xr-x   3 girgen  wheel  512 Sep 16 02:22 win32/

In 6.5.1, there was a Makefile and pgaccess.tcl in there, but not
anymore. The Makefile in src/bin has references to the now non-existing
Makefile.

/Palle

Re: [GENERAL] pgaccess removed from 6.5.2?

From
Dirk Lutzebaeck
Date:
Palle Girgensohn writes:
 > Bruce Momjian wrote:
 > >
 > > > The release notes talk about pgaccess beeing updated, but it is removed
 > > > from the tarball? Only docs and demos are left; Makefile and tcl code is
 > > > gone. How come?
 > > >
 > > > /Palle
 > >
 > > Not sure how that happened.  I see it here.

 > Well, it's not in the tarball. Here's an ls -l src/bin/pgaccess
 > total 7
 > drwxr-xr-x   7 girgen  wheel  512 Sep 16 02:22 ./
 > drwxr-xr-x  21 girgen  wheel  512 Sep 16 02:22 ../
 > drwxr-xr-x   2 girgen  wheel  512 Sep 16 02:22 demo/
 > drwxr-xr-x   3 girgen  wheel  512 Sep 16 02:22 doc/
 > drwxr-xr-x   2 girgen  wheel  512 Sep 16 02:22 images/
 > drwxr-xr-x   4 girgen  wheel  512 Sep 16 02:22 lib/
 > drwxr-xr-x   3 girgen  wheel  512 Sep 16 02:22 win32/
 >
 > In 6.5.1, there was a Makefile and pgaccess.tcl in there, but not
 > anymore. The Makefile in src/bin has references to the now non-existing
 > Makefile.


Same with me, I used the patch. ls -l src/bin/pgaccess

drwxr-xr-x   2 uucp     wheel        1024 Jul 20 14:15 CVS/
-rw-r--r--   1 uucp     wheel         207 Nov  6  1998 a_right.gif
drwxr-xr-x   2 root     root         1024 Sep 22 10:55 demo/
drwxr-xr-x   3 root     root         1024 Sep 22 10:55 doc/
drwxr-xr-x   4 root     root         1024 Sep 22 10:55 lib/
-rw-r--r--   1 uucp     wheel       48128 Dec 12  1998 libpgtcl.dll
-rw-r--r--   1 uucp     wheel       78336 Dec 12  1998 libpq.dll

Dirk


...

From
Nikos Mouat
Date:
Hi,
   I'm trying to backup a database using pg_dump, but whenever I try I
get an error telling me I am really hosed. The template1 database works,
psql works fine, the database is live and working just peachy, but I can't
back it up.

nm

--

[nikm@db01 /tmp]# pg_dump -o  darwin > q
pg_dump: couldn't find the template1 database.  You are really hosed.
Giving up.
[nikm@db01 /tmp]# env | grep PG
PGLIB=/usr/local/pgsql/lib
PGDATA=/usr/local/pgsql/data
[nikm@db01 /tmp]# psql template1
Welcome to the POSTGRESQL interactive sql monitor:
  Please read the file COPYRIGHT for copyright terms of POSTGRESQL
[PostgreSQL 6.5.1 on i686-pc-linux-gnu, compiled by gcc 2.95.1]

   type \? for help on slash commands
   type \q to quit
   type \g or terminate with semicolon to execute query
 You are currently connected to the database: template1

template1=> \d
Database    = template1
 +------------------+----------------------------------+----------+
 |  Owner           |             Relation             |   Type   |
 +------------------+----------------------------------+----------+
 | root             | abc                              | table    |
 | root             | abc_pkey                         | index    |
 +------------------+----------------------------------+----------+

template1=> \q
[nikm@db01 /tmp]#