37 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
42
views
undefined symbol: GetMemoryChunkContext
In Ubuntu environment, when I create my PlJava extension, I get the following error: "could not load library '/usr/lib/postgresql/14/lib/libpljava-so-1.6.7.so': /usr/lib/postgresql/14/lib/...
0
votes
1
answer
97
views
Trying to build PLJAVA 1.5.6 on java 8 + enterprisedb 15.2 fails
Modified the Changes for PLJAVA 1.5.6 since we cannot update the java version to 9 . but now linker is failing while i do the mvn clean install . doing the mvn command from microsoft visual studio ...
0
votes
2
answers
465
views
Install PLJava in Postgresql 14.7 running on Ubuntu 22.04 - maven clean install fails
I have installed the following in Ubuntu 22.04:
g++
gcc
openjdk
maven
postgresql 14.7
openssl
I checked the above are installed correctly:
oot@ubuntu:~# g++ --version
g++ (Ubuntu 11.3.0-1ubuntu1~22....
1
vote
1
answer
409
views
What is the alternative of PL/Java for PostgreSQL 11 and 12?
Understand from: https://www.enterprisedb.com/edb-docs/d/edb-postgres-advanced-server/user-guides/user-guide/11/EDB_Postgres_Advanced_Server_Guide.1.80.html
that PL/Java is deprecated in Advanced ...
1
vote
0
answers
108
views
mvn clean install - pljava deployment error - require assistance
I am getting the below error while trying to do Mvn Clean Install .. what should be done here- this is preventing the installation of the Pl java - pls assist
[ERROR] Plugin org.apache.maven.plugins:...
0
votes
2
answers
840
views
How to deploy compiled PL/Java code straight to Postgres database from application?
I have set up a Postgres database server with PL/Java binary installed on it.
I have observed the process of getting an example PL/Java code to install and run on the database as it starts with ...
1
vote
1
answer
702
views
mvn clean install returning build failed when installing PL/Java
I am trying to install PL/Java on Ubuntu 16.0.4 and getting PL/Java backend native code ........................ FAILURE error when running mvn clean install command. Complete error logs are given ...
1
vote
1
answer
148
views
How to fix "SPI_ERROR_UNCONNECTED" error while installing PL/Java on Postgresql-9.5
I'm trying to install PL/Java on PostgreSQL-9.5. My current server is Ubuntu 16.04. My reference link to install PL/Java is the official website: https://tada.github.io/pljava/install/install.html
...
0
votes
1
answer
196
views
Missing type mapping byte[] to bytea - plJava
i want to execute a plJava function like:
@Function
public static byte[] enrypt_rsa(String message, byte[] public_key)
{...}
But if i try to create a .jar file with maven (mvn clean package) i get ...
0
votes
0
answers
681
views
CREATE EXTENSION pljava failed on PostgreSql 9.6
I try to install pljava for postgesql 9.6 in Ubuntu 16.04, but it fails with error.
A gradlew script makes an installation, but it fails with the following error"
Failed to execute: CREATE EXTENSION ...
1
vote
1
answer
326
views
Error while creating extension in postgresql
I am using https://tada.github.io/pljava/install/install.html link to create pljava extension in postgresql.
Build is ok and there is no unsuccessful operation. However when i tried to create ...
0
votes
1
answer
154
views
pljava installation 1.5.1-snapshot on postgresql 10beta2 - undefined symbol: DatumGetFloat8
When installing pljava-1.5.1-snapshot on postgresql 10b2 I get
undefined symbol: DatumGetFloat8 when executing
create extension pljava;
Works for me on postgres96.
Is there an issue installing ...
0
votes
2
answers
561
views
Issues while installing "sqlj" schema using pljava in postgres 9.3 for windows 7
I am trying to install Postgres 9.3.16 on Windows7 (64 bit operating system). While Installing sqlj schema using pljava and the following command:
java -cp "C:\Softwares\PostgreSQL9円.3\share\pljava\...
0
votes
1
answer
843
views
install pljava on Windows 7 with Postgres 9.6
I am struggling to install pljava on Windows 7 Sp1 with Postgres 9.6.
When I run the following command:
CREATE FUNCTION sqlj.java_call_handler()
RETURNS language_handler AS 'pljava'
LANGUAGE C;
I ...
0
votes
1
answer
1k
views
Postgres PL/JAVA: java.lang.ClassNotFoundException error after loading JAR file in database
I am getting the java.lang.ClassNotFoundException: error inside Postgres when running a function that calls a JAR file I have loaded. I have installed and configured PL/JAVA (including the delivered ...