oracle12c中如何导入java的jar文件

发布时间:2021-11-11 17:26:43 作者:小新
来源:亿速云 阅读:665

这篇文章主要介绍oracle12c中如何导入java的jar文件,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

1、创建表空间
[oracle@host01 /]$ sqlplus / as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Thu Dec 21 15:29:33 2017
Copyright (c) 1982, 2014, Oracle.  All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SQL> alter session set container=xfpdb;
SQL> create tablespace xftbs datafile '/u01/app/oracle/oradata/PRODCDB/xfpdb/xftbs01.dbf' size 10m;
Tablespace created.
2、创建用户并授权
SQL> create user xf identified by xf default tablespace xftbs quota unlimited on xftbs;
User created.

SQL> grant connect ,resource to xf;
Grant succeeded.

3、使用xf用户连接数据库执行jar包导入
需要将commons-math4-3.0.jar文件上传至/home/oracle/files/下
使用dbms_java.loadjava导入jar包
[oracle@host01 admin]$ sqlplus xf/xf@192.168.56.101:1521/xfpdb.example.com

SQL*Plus: Release 12.1.0.2.0 Production on Tue Dec 19 13:58:13 2017

Copyright (c) 1982, 2014, Oracle.  All rights reserved.

Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options

SQL> call dbms_java.loadjava('-v -r PUBLIC -sysnonym /home/oracle/files/commons-math4-3.0.jar');

Call completed.

SQL> begin
      dbms_java.loadjava('-v -r PUBLIC -sysnonym /home/oracle/files/commons-math4-3.0.jar');
     end;
    /

PL/SQL procedure successfully completed.

SQL> exec dbms_java.loadjava('-v -r PUBLIC -sysnonym /home/oracle/files/commons-math4-3.0.jar');

PL/SQL procedure successfully completed.

或者使用loadjava命令
[oracle@host01 admin]$ loadjava -force -thin -user xf/xf@192.168.56.101:1521/xfpdb.example.com -resolve /home/oracle/files/commons-math4-3.0.jar

4在Oracle数据库创建java代码

SQL> create or replace and compile java source named jar_norm as
  2  import org.apache.commons.math4.distribution.NormalDistribution;
  3  public class jar_norm {
  4     public static double s_inv(double s){
  5     NormalDistribution normalDistribution =new NormalDistribution(0,1);
  6     double S1=normalDistribution.inverseCumulativeProbability(s);
  7     return S1;
  8     }
  9     public static double s_dist_c(double s){
 10     NormalDistribution normalDistribution =new NormalDistribution(0,1);
 11     double S1=normalDistribution.cumulativeProbability(s);
 12     return S1;
 13     }
 14  }
 15  /

以上是“oracle12c中如何导入java的jar文件”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!

推荐阅读:
  1. java打开 .jar文件的方法
  2. 将java程序打包成jar文件的方法

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

oracle java jar

上一篇:Linux的常用最危险的命令有哪些

下一篇:Django中的unittest应用是什么

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》