SET DEFINE OFF
SET SERVEROUTPUT ON
DECLARE
req UTL_HTTP.REQ;
resp UTL_HTTP.RESP;
value VARCHAR2(32767);
V_DATA VARCHAR2(100) := 'strDate=”31-APR-2012”&strName=”TestName”';
BEGIN
req := UTL_...
分类:
Web程序 时间:
2014-11-20 17:04:02
阅读次数:
149
首先看一下oracle 脚本
/* # $Header: HTMomse12.sql 12.0.4 20121015 Support $
#+======================================================================================+
#| ...
分类:
其他好文 时间:
2014-11-14 17:56:46
阅读次数:
381
In this Document
Purpose
Scope
Details
APPLIES TO:
Oracle Database - Enterprise Edition - Version 11.1.0.6 and later
Web Services - Version 1...
分类:
数据库 时间:
2014-11-09 18:06:19
阅读次数:
262
就是在原有TOM源码的基础上修改utl_smtp.write_data中,将输出内容进行一下数据转换,这样可以保证中文输出不会出现乱码-----------------------------create or replace procedure html_email( p_to ...
分类:
其他好文 时间:
2014-10-17 10:42:04
阅读次数:
154
Ok, that looks hard, but if you use this procedure I wrote, its really quite easy, it does all of the work for you:create or replace procedure html_em...
分类:
数据库 时间:
2014-10-17 09:54:24
阅读次数:
285
UTL_FILE包提供文本文件输入和输出功能。如果希望把来自于其他系统的数据加载到数据库中,或者捕获有关数据库的当前信息并保存到文本文件中,可以使用这个包。
分类:
其他好文 时间:
2014-08-15 12:10:48
阅读次数:
164
网上太多发邮件储存过程,我就不转发了,弄个简单的作为示例;
create or replace procedure Send_mail(mail_body varchar2) is
smtp_conn utl_smtp.connection;
user_name varchar2(20) := utl_raw.cast_to_varchar2(utl_encode.base64_...
分类:
数据库 时间:
2014-08-01 20:00:12
阅读次数:
384
1 Utl_File包简介Oracle的UTL_FILE包用来实现对磁盘文件的I/O操作。(1)Oracle10g之前的版本需要指定utl_file包可以操作的目录。 方法: 1、alter system set utl_file_dir='e:/utl' scope=spfile; 2、在in.....
分类:
数据库 时间:
2014-07-21 09:38:59
阅读次数:
513
APPLIES TO:PL/SQL - Version 9.2.0.1 to 12.1.0.1 [Release 9.2 to 12.1]Information in this document applies to any platform.***Checked for relevance on ...
分类:
其他好文 时间:
2014-07-18 18:27:07
阅读次数:
273
Check SMTP Server Availability for ORA-29278 or ORA-29279 errors using UTL_SMTP to Send Email. (文档 ID 604763.1)转到底部修改时间:2014-5-13类型:PROBLEM为此文档评级通过电子邮...
分类:
其他好文 时间:
2014-07-18 17:38:40
阅读次数:
495