这篇介绍使用Logminer时遇到ORA-01336: specified dictionary file cannot be opened错误的各种场景 1:dictionary_location参数的路径最后多了一个/符号。 SQL> show parameter utl_file_dir; N... ...
分类:
其他好文 时间:
2016-08-21 12:19:24
阅读次数:
192
ORACLE利用UTL_HTTP包提供了访问HTTP的工具。 下面这段代码是网上找的,可以直接在plsql中运行。 declare req UTL_HTTP.REQ; resp UTL_HTTP.RESP; val varchar2(32767);begin req := UTL_HTTP.BEGI ...
分类:
数据库 时间:
2016-08-09 20:47:58
阅读次数:
350
UTL_INADDR包获取ip等信息的实现原理: 可参考盖神的文章:http://www.eygle.com/archives/2006/10/how_to_getip_address.html 在Linux可使用strace 命令进行相关命令的跟踪,在跟踪信息中获知 Oracle顺序访问了如下文件 ...
分类:
数据库 时间:
2016-07-15 15:22:17
阅读次数:
186
utl_tcp 实现tcp连接 function : test script: xml output procedure: CREATE OR REPLACE PROCEDURE PrintXML (i_respxml IN CLOB) is line VARCHAR2 (32767); v_clo ...
分类:
数据库 时间:
2016-05-25 18:40:59
阅读次数:
230
use utl_smtp to send mail Notes 1.port need to change according to server setting. For example gmail smtp port is 465. 2.use utl_smtp.command to use T ...
分类:
数据库 时间:
2016-05-16 17:16:05
阅读次数:
233
1、用DBA登录赋权限create or replace directory D_OUTPUT as 'D:\TEMP'; grant read,write on directory D_OUTPUT to testdb; GRANT EXECUTE ON utl_file TO testdb; 2 ...
分类:
数据库 时间:
2016-05-09 15:47:34
阅读次数:
309
文章来源:http://www.cnblogs.com/pengyq/archive/2008/08/27/1277739.html ...
分类:
数据库 时间:
2016-05-08 22:21:22
阅读次数:
328