Re: [HACKERS] dumpall prob

Поиск
Список
Период
Сортировка
От Patrick Welche
Тема Re: [HACKERS] dumpall prob
Дата
Msg-id E11yJ25-00022w-00@quartz.newn.cam.ac.uk
обсуждение исходный текст
Ответ на Re: [HACKERS] dumpall prob  ("Patrick Welche" <prlw1@newn.cam.ac.uk>)
Список pgsql-hackers
> % pg_dumpall > db.out2
> Connection to database 'List' failed.
> pqReadData() -- backend closed the channel unexpectedly.
>         This probably means the backend terminated abnormally
>         before or while processing the request.
> 
> pg_dump failed on List, exiting
> 
> 
> ... investigating ...

Reason:

In pg_dumpall, line 50 is:

psql -l -A -q -t| tr '|' ' ' | grep -v '^template1 ' | \

which outputs:

% psql -l -A -q -t| tr '|' ' ' | grep -v '^template1 '
List of databases
Database Owner
darwin prlw1
...
(5 rows)


so presumably, it tries to open a connection to "List" as user "of"
this implies that "-q" isn't quite as quiet as it could be...

I tried changing it to

psql -l -A -q -t| tr '|' ' ' | egrep -v '(^template1 |^List of databases|^Database Owner| rows)' | \ 

as a work around, but then:

\connect template1 ERROR:  attribute 'prlw1' not found
create database darwin;
\connect darwin ERROR:  attribute 'prlw1' not found

etc

and this is because line 56 wants to read
               where usesysid = \'$DBUSERID\'; \" | \
rather than               where usesysid = $DBUSERID; \" | \


Cheers,

Patrick


В списке pgsql-hackers по дате отправления:

Предыдущее
От: "Patrick Welche"
Дата:
Сообщение: Re: [HACKERS] initdb / pg_version
Следующее
От: Don Baccus
Дата:
Сообщение: Re: AW: [HACKERS] SELECT ... AS ... names in WHERE/GROUP BY/HAVING