??
1、使用oracle压缩blob对象
l_blob := utl_compress.lz_compress(l_blob);
2、将blob转换成clob
FUNCTION blob_to_clob(blob_in IN BLOB) RETURN CLOB AS
v_clob CLOB;
v_varchar VARCHAR2(32767 ...
分类:
数据库 时间:
2015-02-13 01:36:33
阅读次数:
2111
1.查看oracle所在服务器的ip:select utl_inaddr.get_host_address from dual;2.查看登陆oracle机器的IP:select sys_context('userenv','ip_address') from dual;3.查看oracle数据库的S...
分类:
数据库 时间:
2015-01-28 17:32:28
阅读次数:
165
解决方案:sqlplus / as sysdbagrant execute on UTL_I18N to scott;grant execute on DBMS_CRYPTO to scott;
分类:
其他好文 时间:
2015-01-28 14:21:11
阅读次数:
162
首先写一个函数是MD5的方法create FUNCTION GET_MD5( p_str in varchar2)RETURN varchar2 ISBEGINRETURN Utl_Raw.Cast_To_Raw(DBMS_OBFUSCATION_TOOLKIT.MD5(input_string ....
分类:
数据库 时间:
2015-01-05 14:50:09
阅读次数:
202
from:http://oracle-base.com/articles/10g/utl_dbws-10g.phpIn a previous article I presented a method for Consuming Web Services using a basic SOAP implementation. This article provides similar function...
分类:
数据库 时间:
2014-12-19 19:11:47
阅读次数:
625
In this Document
Goal
Solution
References
APPLIES TO:
PL/SQL - Version 9.2.0.1 to 12.1.0.1 [Release 9.2 to 12.1]
Information in this document...
分类:
其他好文 时间:
2014-11-29 17:36:51
阅读次数:
197
CREATE OR REPLACE PROCEDURE SCOTT.HTML_EMAIL( P_TO IN VARCHAR2, --收件人地址 P_SUBJECT IN VARCHAR2, ...
分类:
数据库 时间:
2014-11-28 16:10:57
阅读次数:
363
详细内容需要参考文档:Oracle 11i Advanced Pricing—Don’t Customize, Extend!
utl:http://blog.csdn.net/cai_xingyun/article/details/41384541
Oracle Advanced Pricing - Version 11.5.8 and later
Information in t...
分类:
其他好文 时间:
2014-11-22 20:18:35
阅读次数:
261
执行如下命令导出数据库:
expdp FS5_5400/FS5_5400@ORCL1 DUMPFILE=20141122.DMP 出现如下错误:
ORA-39002: 操作无效
ORA-39070: 无法打开日志文件。
ORA-29283: 文件操作无效
ORA-06512: 在 "SYS.UTL_...
分类:
其他好文 时间:
2014-11-22 10:33:32
阅读次数:
674
From Oracle
The UTL_HTTP package makes Hypertext Transfer Protocol (HTTP) callouts from SQL and PL/SQL. You
can use it to access data on the Internet over HTTP.
When the package fetches data f...
分类:
数据库 时间:
2014-11-20 18:52:06
阅读次数:
501