如何在 postgresql 9.4 中安装/使用 orafce 包



我在 9.4 版中运行 postgresql 的"官方"docker 容器。我进入正在运行的容器并安装了 orafce

docker exec -i -t my_postgres bash
apt-get install postgresql-9.4-orafce

之后,我尝试重新加载并重新启动postgresql服务,以及重新启动整个容器,但是当我尝试使用应该在 orafce 中定义的函数时,它不起作用。

我说的是这里的一个简单的例子:

SELECT add_months(date '2005-05-31',1);  -- > 2005-06-30
SELECT last_day(date '2005-05-24');      -- > 2005-05-31
SELECT next_day(date '2005-05-24', 'monday'); -- > 2005-05-30
SELECT next_day(date '2005-05-24', 2); -- > 2005-05-30
SELECT months_between(date '1995-02-02', date '1995-01-01'); -- > 1.0322580645161
SELECT trunc(date '2005-07-12', 'iw');   -- > 2005-07-11
SELECT round(date '2005-07-12', 'yyyy'); -- > 2006-01-01

这是我得到的输出,当简单地将这些命令复制到phpPgAdmin到postgres/public中时:

SQL error:
ERROR:  function add_months(date, integer) does not exist
LINE 1:   SELECT add_months(date '2005-05-31',1);  -- > 2005-06-30
                 ^
HINT:  No function matches the given name and argument types. You might need to add explicit type casts.
In statement:
  SELECT add_months(date '2005-05-31',1);  -- > 2005-06-30
  SELECT last_day(date '2005-05-24');      -- > 2005-05-31
  SELECT next_day(date '2005-05-24', 'monday'); -- > 2005-05-30
  SELECT next_day(date '2005-05-24', 2); -- > 2005-05-30
  SELECT months_between(date '1995-02-02', date '1995-01-01'); -- > 1.0322580645161
  SELECT trunc(date '2005-07-12', 'iw');   -- > 2005-07-11
  SELECT round(date '2005-07-12', 'yyyy'); -- > 2006-01-01

现在,我知道,我不应该直接在 docker 中安装软件包,也不应该使用 phpPgAdmin,这只是一个简单的测试,看看我是否可以将较小的 oracle DB 移植到 postgres。

为了

能够使用orafce,我缺少什么吗?安装软件包或重新启动库时找不到任何错误。

好的,一个 smple

CREATE EXTENSION orafce

就够了

相关内容

  • 没有找到相关文章

最新更新