详细:http://zhangzhongjie.iteye.com/blog/1903024 ...
分类:
数据库 时间:
2016-05-08 01:04:48
阅读次数:
464
create or replace procedure p_outputdebug(a varchar2,b varchar2,c varchar2)is vFileName varchar2(100); OutputFile UTL_FILE.FILE_TYPE;begin select 'rfi ...
分类:
数据库 时间:
2016-05-07 15:07:15
阅读次数:
332
In this Document Purpose Scope Details APPLIES TO: Oracle Database - Enterprise Edition - Version 11.1.0.6 and later Web Services - Version 10.1.3.1.0 ...
分类:
数据库 时间:
2016-04-06 10:59:12
阅读次数:
239
---恢复内容开始--- 1.在IDE中查看blob字段的内容可以采用: UTL_RAW.CAST_TO_VARCHAR2(blob)的方法,其中blob为表中blob字段的列名。这个方法限定结果不可超过2000字节。 2. 更新blob时,碰到德文乱码问题,最后采用的是在转换为byte[]后,再次
分类:
数据库 时间:
2016-03-09 01:34:48
阅读次数:
194
the below is about utl_file operation:first, you should make a directory at the path that you wish:[jeffreyxu@rat167 ~]$ mkdir test_diranyone has the ...
分类:
数据库 时间:
2015-12-09 19:23:04
阅读次数:
163
utl_file给用户文件操作权限 1 -----rlwrap sqlplus sys/111111@localhost:1522/xe as sysdba 2 -----以sysdba 身份登陆 3 CREATE OR REPLACE DIRECTORY test_dir as '/sandbox...
分类:
数据库 时间:
2015-12-08 22:24:24
阅读次数:
247
1.utl_http,utl_tcp,utl_inaddr,utl_mail,utl_smtp的赋权限grant execute on &utl_privilege to &username;2.utl_inaddr 的使用(1)获取本地主机名(host_name)和地址(host_address)...
分类:
数据库 时间:
2015-12-08 22:13:36
阅读次数:
616
1. base64 的解密函数select utl_raw.cast_to_varchar2(utl_encode.base64_decode(utl_raw.cast_to_raw('dGVzdA=='))) from dual2. base64 的加密函数select utl_raw.cast_...
分类:
数据库 时间:
2015-09-28 18:52:59
阅读次数:
218