码迷,mamicode.com
首页 >  
搜索关键字:utl    ( 101个结果
使用oracle压缩blob对象
?? 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
oracle用户下查看服务器或者本地IP地址
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
Warning: Function created with compilation errors!
解决方案:sqlplus / as sysdbagrant execute on UTL_I18N to scott;grant execute on DBMS_CRYPTO to scott;
分类:其他好文   时间:2015-01-28 14:21:11    阅读次数:162
oracle学习 五 使用存储过程创建一个重置密码为123456的功能(持续更新中)
首先写一个函数是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
UTL_DBWS - Consuming Web Services in Oracle 10g Onward
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
How to Send an Email Using UTL_SMTP with Authenticated Mail Server
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
Oracle 10G 使用UTL_SMTP发送中文电子邮件[Z]
CREATE OR REPLACE PROCEDURE SCOTT.HTML_EMAIL( P_TO IN VARCHAR2, --收件人地址 P_SUBJECT IN VARCHAR2, ...
分类:数据库   时间:2014-11-28 16:10:57    阅读次数:363
Advanced Pricing - How to source Pricing Attributes using QP_CUSTOM_SOURCE.Get_Custom_Attribute_Valu
详细内容需要参考文档: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 无法打开日志文件
执行如下命令导出数据库: 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
Oracle UTL_HTTP(收集汇总有用资料)
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
101条   上一页 1 ... 6 7 8 9 10 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!