From: | Guillaume Lelarge <guillaume(at)lelarge(dot)info> |
---|---|
To: | Daniel Vázquez <daniel2d2art(at)gmail(dot)com> |
Cc: | pgsql-admin(at)postgresql(dot)org |
Subject: | Re: listing installed modules |
Date: | 2011-12-27 15:29:32 |
Message-ID: | 1324999772.3291.21.camel@localhost.localdomain |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
On Tue, 2011-12-27 at 15:55 +0100, Daniel Vázquez wrote:
> How to get a list of contrib module installed extensions on Postgresql
> 8.4??
>
If you mean installed on the OS, it's impossible from the SQL command
line. If you mean installed on your database, it's difficult to know.
You need to check if a specific function / type / operator / whatever
that this extension provides is available. It's difficult and error
prone.
That's why we now have the extensions system. Now as "in 9.1".
> I see \dx command for 9.1 but not works on 8.4
>
Yes. That's because extensions are a new PostgreSQL object since the 9.1
release.
--
Guillaume
http://blog.guillaume.lelarge.info
http://www.dalibo.com
PostgreSQL Sessions #3: http://www.postgresql-sessions.org
From | Date | Subject | |
---|---|---|---|
Next Message | Suresh Hosur | 2011-12-28 09:44:15 | psql error on postgresql-9.0 : psql: symbol lookup error: psql: undefined symbol: PQconnectdbParams |
Previous Message | Daniel Vázquez | 2011-12-27 14:55:58 | listing installed modules |