Re: 'moving' from one database to another - Mailing list pgsql-novice

From Tom Lane
Subject Re: 'moving' from one database to another
Date
Msg-id 2921.1375563061@sss.pgh.pa.us
Whole thread Raw
In response to Re: 'moving' from one database to another  (Kevin Grittner <kgrittn@ymail.com>)
Responses Re: 'moving' from one database to another
List pgsql-novice
Kevin Grittner <kgrittn@ymail.com> writes:
> Jean MAURICE <mauricejea@numericable.fr> wrote:
>> I connect to the database 'postgres'. I can then test if the
>> database I want is already built and I build it if not.
>>
>> But once it is built, can I 'move' from the default database to
>> my new database with a command OR must I disconnect from postgres
>> and reconnect to my new database ? In Visual Foxpro, we have a
>> command "SET DATABASE TO mydatabase" and it is exactly what I
>> want to do !

> In PostgreSQL a connection is to a particular database.� To use a
> different database you must establish a new connection.� The psql
> client software provides an easy way to do that with \c, but behind
> the scenes that closes the existing connection and opens a new one.

It's entirely likely that what you really want to approximate Foxpro with
is not multiple databases, but multiple schemas within a single database.

            regards, tom lane


pgsql-novice by date:

Previous
From: Kevin Grittner
Date:
Subject: Re: 'moving' from one database to another
Next
From: Jean MAURICE
Date:
Subject: Re: 'moving' from one database to another