> -----Original Message-----
> From: John DeSoi [mailto:[EMAIL PROTECTED]
> Sent: 07 February 2005 04:21 PM
> To: Shaun Clements
> Cc: 'PgSql General'
> Subject: Re: [GENERAL] Problem performing a restore of a data schema in
> Windows
>
>
>
> On Feb 7, 2005, at 8:22 AM, Shaun Clements wrote:
>
>> psql -U username -d db1 > filename.dm
>

You're going the wrong way. Try either


   psql -U username -d db1 < filename.dm

or

   cat filename.dm | psql -U username -d db1

or

   psql -f filename.dm -U username -d db1




---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
      joining column's datatypes do not match

Reply via email to