Hi,
I'm trying to install a java udf on db2..I tried the command --
db2 "call SQLJ.INSTALL_JAR('file:/home/db2inst1/java_libs/test-db.jar' , 'testdb')"
and it worked just fine -- DB20000I The CALL command completed successfully.
Then, I can also call the function that corresponds the the jar successfully as well --
db2 "select TESTFUNC(200) from sysibm.sysdummy1"
However, if I try to remove it by giving the command --
db2 "call sqlj.remove_jar('testdb')", I get this error
SQL0444N Routine "*move_jar" (specific name "SQL100420191207610") is
implemented with code in library or path "...tion/sqlj.remove_jar", function
"sqlj.remove_jar" which cannot be accessed. Reason code: "4". SQLSTATE=42724
Any idea how I can fix this? Thanks!