gpt4 book ai didi

oracle - 如何以普通用户身份在 Oracle 中运行 dbms_crypto 函数?

转载 作者:太空狗 更新时间:2023-10-30 01:48:41 24 4
gpt4 key购买 nike

我在 Oracle 中使用 dbms_crypto.hash() 函数时遇到问题。

我使用 sqlplus 作为“sys/passwd 作为 sysdba”连接到数据库服务器,然后我安装了 dbms_crypto 包:

@/home/oracle/app/oracle/product/11.2.0/dbhome_1/rdbms/admin/dbmsobtk.sql
@/home/oracle/app/oracle/product/11.2.0/dbhome_1/rdbms/admin/prvtobtk.plb
Grant execute on dbms_crypto to public;
Grant execute on dbms_sqlhash to public;
Grant execute on dbms_obfuscation_toolkit to public;
Grant execute on dbms_obfuscation_toolkit_ffi to public;
Grant execute on dbms_crypto_ffi to public;

一切看起来都不错,所以我测试了 hash() 函数:

SQL> select dbms_crypto.hash(utl_raw.cast_to_raw('zorg'), 3) from dual;

DBMS_CRYPTO.HASH(UTL_RAW.CAST_TO_RAW('ZORG'),3)
--------------------------------------------------------------------------------
60C440F9954CA4744204CDA9CC93567059C1EC82

我以普通用户身份断开并连接到该数据库,但随后出现错误:

SQL> select dbms_crypto.hash(utl_raw.cast_to_raw('zorg'), 3) from dual;
select dbms_crypto.hash(utl_raw.cast_to_raw('zorg'), 3) from dual
*
ERROR at line 1:
ORA-06521: PL/SQL: Error mapping function
ORA-06512: at "MN.DBMS_CRYPTO_FFI", line 131
ORA-06512: at "MN.DBMS_CRYPTO", line 72

为什么我不能以普通用户身份使用此功能?如何让其他用户使用?

我的工作对象:

Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production

最佳答案

问题解决了。我以错误的用户身份创建了包。正确的做法:

  1. 连接使用:

    sqlplus / as sysdba
  2. 安装包:

    @/home/oracle/app/oracle/product/11.2.0/dbhome_1/rdbms/admin/dbmsobtk.sql
    @/home/oracle/app/oracle/product/11.2.0/dbhome_1/rdbms/admin/prvtobtk.plb
  3. 以普通用户身份连接并使用 dbms_crypto 包中的函数。

关于oracle - 如何以普通用户身份在 Oracle 中运行 dbms_crypto 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13473087/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com