码迷,mamicode.com
首页 >  
搜索关键字:utl    ( 101个结果
ORA-01336: specified dictionary file cannot be opened
这篇介绍使用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的http访问
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
oracle获取主机服务器IP
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
PLSQL NOTE--------network utl_tcp
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
PLSQL NOTE--------network utl_inaddr package
utl_inaddr 的使用 ...
分类:数据库   时间:2016-05-16 17:32:44    阅读次数:160
PLSQL NOTE--------network utl_http
utl_http ...
分类:数据库   时间:2016-05-16 17:20:14    阅读次数:277
PLSQL NOTE--------network utl_smtp package
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
UTL_FILE详解
...
分类:其他好文   时间:2016-05-13 08:08:21    阅读次数:192
Oracle写函数读写日志实例
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
oracle读写文件--利用utl_file包对磁盘文件的读写操作
文章来源:http://www.cnblogs.com/pengyq/archive/2008/08/27/1277739.html ...
分类:数据库   时间:2016-05-08 22:21:22    阅读次数:328
101条   上一页 1 ... 3 4 5 6 7 ... 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!