Re: [ADMIN] Importing Database

2002-06-25 Thread Lee Harr
> When I type less 20020422_project_summaries.gz, I get the > text of the database of this file. So it seems that it's already unzipped > but has the .gz extension. how do I import this file > as a database into postgresql? I'm running cygwin and pgAdmin II > on a win2k computer. > I am no

Re: [ADMIN] Importing Database

2002-06-24 Thread Rajesh Kumar Mallah.
rename 20020422_project_summaries.gz as 20020422_project_summaries.sql and load it using psql. regds mallah On Monday 24 June 2002 21:00, [EMAIL PROTECTED] wrote: > Hi, > > I'm trying to import this database into postgresql. > The file is called 20020422_project_summaries.gz. > When I gunzip i

Re: [ADMIN] Importing Database

2002-06-24 Thread Nick Fankhauser
Well, since it is already in text format, just load it normally: psql -f 20020422_project_summaries.gz psql doesn't care what the name is so long as the internal format is OK. If you want to, you can rename it. (I probably would to avoid confusion among the humans.) -Nick ---