Re: Single server multiple databases - extension

From: Brian Trudal <dbrb2002-sql(at)yahoo(dot)com>
To: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Single server multiple databases - extension
Date: 2012-03-06 20:00:57
Message-ID: 1331064057.46022.YahooMailNeo@web31807.mail.mud.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Any one know how to install extensions to multiple databases in the same server ?

Thanks in advance
Brian

________________________________
From: Brian Trudal <dbrb2002-sql(at)yahoo(dot)com>
To: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Sent: Monday, March 5, 2012 4:52 PM
Subject: Single server multiple databases - extension

Hi

I have 2 databases running in a single server; and I installed extension 'hstore' to one database and it works fine. When I tried to use the same extension in another database, it gives an error saying 'extension does not exist'; nor it allow to install as it complains about its existence.

Any help ?

db1=# CREATE EXTENSION hstore;
ERROR:  type "hstore" already exists
db1=# DROP EXTENSION hstore;
ERROR:  extension "hstore" does not exist
db1=# create table foo(id hstore);
ERROR:  type "hstore" is only a shell
LINE 1: create table foo(id hstore);
                            ^

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Matteo Sgalaberni 2012-03-06 20:24:20 corrupted table postgresql 8.3
Previous Message hello_world 2012-03-06 19:57:25 Re: Unable to write inside TEMP environment variable path