0

Im trying to enable Orafce(3.7.1-1) extension on my postgress11 (11.2-2)

My OS is Ubuntu 18.04

  • The extension is already available in the database , and is listed if I run the following command :
select *  from pg_catalog.pg_available_extensions
  • However when I try running the following command, I see error below.
create extension orafce with schema vias;

> Error>

    ERROR: could not load library "/home/vias/path/pg11/lib/postgresql/orafce.so": /home/vias/path/pg11/lib/postgresql/orafce.so: undefined symbol: pq_sendbyte SQL state: XX000

Im really stuck... please advice

Devesh Kumar Singh
  • 20,259
  • 5
  • 21
  • 40
ABR
  • 1
  • Thanks for helping me out on the editing... still anyone out there can assist me on the question – ABR Apr 24 '19 at 04:20

1 Answers1

0

Recompile the extension for Postgres 11, it's likely compiled for Postgres 10

Demur Rumed
  • 421
  • 6
  • 17