Re: Creating database problems

From: Andreas Kretschmer <andreas(at)a-kretschmer(dot)de>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: Creating database problems
Date: 2017-10-01 19:02:49
Message-ID: 4005d35c-04bf-9405-e6ab-b1d9784da6b3@a-kretschmer.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Am 01.10.2017 um 13:50 schrieb Rouzzi Anissa:
> Hello,
>
> Within my application , i need to create a new database from
> existanting database so i'm using this batch :
>
> *cd "C:\Program Files\Postgresql\9.5\bin"*
> *
> *
> *pg_dump.exe --host %Server% --port 5432 --username "postgres"
> --no-password --format custom --blobs --verbose "%DatabaseModel%"*

the pg_dump dumps to stdout, not to a file ...

> *
> *
> *
> *
> *createdb -h %Server% -U postgres -p 5432 %NewDatabase%*
> *
> *
> *
> *
> *pg_restore -h %Server% -U postgres -d %NewDatabase% Fichier.dump*
>

there isn't a file *Fichier.dump, *i would guess...

>
> but that doesn't work for me , i think it is a problem of password so
> i used Set PGPAssword and

doesn't work isn't a precise error description...

Regards, Andreas

--
2ndQuadrant - The PostgreSQL Support Company.
www.2ndQuadrant.com

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Peng Yu 2017-10-03 17:05:24 How extract data from pg_dump'ed files to tsv files?
Previous Message Rouzzi Anissa 2017-10-01 11:50:00 Creating database problems