在PostgreSQL 8.4中安装其他模块多维数据集时出现问题

前端之家收集整理的这篇文章主要介绍了在PostgreSQL 8.4中安装其他模块多维数据集时出现问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Postgresql与“七周数据库”七本书.我在Ubuntu 10.04服务器上使用Postgresql 8.4.1.

第一个任务是创建一个名为“book”的数据库,并检查contrib包是否已正确安装.

$createdb book
$psql book -c "SELECT '1'::cube;"

当我这样做,我得到以下输出

ERROR:  type "cube" does not exist
LINE 1: SELECT '1'::cube;

我已经使用以下命令安装了多维数据集包:

$sudo -u postgres psql postgres < /usr/share/postgresql/8.4/contrib/cube.sql

我尝试重新启动Postgresql,但问题仍然存在.当我第二次尝试运行包导入时,我收到以下消息,其中明确指出类型“cube”已经存在:

SET
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
ERROR:  type "cube" already exists
COMMENT
CREATE FUNCTION
COMMENT
CREATE FUNCTION
COMMENT
CREATE FUNCTION
COMMENT
CREATE FUNCTION
COMMENT
CREATE FUNCTION
COMMENT
CREATE FUNCTION
COMMENT
CREATE FUNCTION
COMMENT
CREATE FUNCTION
COMMENT
CREATE FUNCTION
COMMENT
CREATE FUNCTION
COMMENT
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
ERROR:  operator < already exists
ERROR:  operator > already exists
ERROR:  operator <= already exists
ERROR:  operator >= already exists
ERROR:  operator && already exists
ERROR:  operator = already exists
ERROR:  operator <> already exists
ERROR:  operator @> already exists
ERROR:  operator <@ already exists
ERROR:  operator @ already exists
ERROR:  operator ~ already exists
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
ERROR:  operator class "cube_ops" for access method "btree" already exists
ERROR:  operator class "gist_cube_ops" for access method "gist" already exists

那么我做错了什么?

您只将扩展名安装到您的postgres数据库(名为“postgres”的默认系统数据库) – 这可能不是您想要的.您需要将扩展​​名安装到数据库中,每个数据库将使用它.

或者您可以将其安装到模板数据库(默认情况下为template1,但是可以将任何数据库用作模板),以便每个新创建的数据库都从预先安装的功能开始.

在Postgresql 8.4或更新版本中,您需要在shell中运行:

psql -d dbname -f SHAREDIR/contrib/cube.sql

其中dbname是实际目标数据库名称.或使用您在问题中的等效线.
More info for PostgreSQL 8.4 in the manual here.

因为Postgresql 9.1这个进一步简化了,你可以在数据库会话中运行:

CREATE extension cube

More in the manual here.

原文链接:https://www.f2er.com/postgresql/192196.html

猜你在找的Postgre SQL相关文章