Using the command line utility loadjava , the JAVA library was loaded into the database. Command with parameters:
loadjava -jarsasdbobjects -resolve -verbose -thin -user login/pass@host:port:SID "sqljdbc.jar" Now I try to delete this library as follows:
dropjava -jarsasdbobjects -resolve -verbose -thin -user login/pass@host:port:SID "sqljdbc.jar" To which I get an error:
dropping: class com/microsoft/sqlserver/jdbc/ActivityCorrelator Error while dropping com/microsoft/sqlserver/jdbc/ActivityCorrelator ORA-29537: класс или ресурс не могут быть созданы или удалены напрямую And so for every class in this library.
I tried to delete with dbms_java.dropjava() and through the drop java class , but the error was still the same.
It must be said that the library loaded without the -jarsasdbobjects parameter was -jarsasdbobjects without problems.
How do I properly remove the library?