2012-09-14 65 views
0

我通過macports安裝了postgresql 9.2。通常我可以通過在我使用的數據庫中運行'create extension'命令來安裝擴展。雖然它適用於fuzzystrmatch,但我無法找到適用於多維數據集模塊的文件。以下是我安裝的模塊。如何爲postgresql 9.2安裝額外的模塊?像cube.control?

select * from pg_available_extensions; 
name  | default_version | installed_version |         - 
adminpack   | 1.0    |     | administrative functions for  PostgreSQL 
dblink    | 1.0    |     | connect to other PostgreSQL databases from within a database 
file_fdw   | 1.0    |     | foreign-data wrapper for flat file access 
fuzzystrmatch  | 1.0    | 1.0    | determine similarities and distance between strings 
lo     | 1.0    |     | Large Object maintenance 
pageinspect  | 1.0    |     | inspect the contents of database pages at a low level 
pg_buffercache  | 1.0    |     | examine the shared buffer cache 
pg_freespacemap | 1.0    |     | examine the free space map (FSM) 
pg_stat_statements | 1.1    |     | track execution statistics of all SQL statements executed 
pg_trgm   | 1.0    | 1.0    | text similarity measurement and index searching based on trigrams 
pgcrypto   | 1.0    |     | cryptographic functions 
pgrowlocks   | 1.0    |     | show row-level locking information 
pgstattuple  | 1.0    |     | show tuple-level statistics 
plpgsql   | 1.0    | 1.0    | PL/pgSQL procedural language 
tablefunc   | 1.0    | 1.0    | functions that manipulate whole tables, including crosstab 
uuid-ossp   | 1.0    |     | generate universally unique identifiers (UUIDs) 
(16 rows) 

在哪裏可以下載其他缺失的模塊?

回答