--创建有大对象字段的一张表
 create table test001
 (
       fname varchar2(50),
       content blob
 )
 
 select * from dba_users;
 
 select * from test001
 
 --(一)..准备插入大对象
 --1. 创建文件存放目录(让Oracle管理,该目录)
 create or replace directory test_dir
        as
 'e:\Pictures';
 
 --2.可以将该目录授权给其他用户访问
 grant read,write on directory test_dir to scott;
 
 --(二).准备将大对象,存放在test001表中
 declare
       tempimg blob;--定义临时变量存放数据
       tempdir bfile := bfilename('TEST_DIR','Azul.jpg');--非常重要:所有数据都是大写存放的
 begin      
       insert into test001 values ('first.jpg',empty_blob()) returning content into tempimg;
       
       --使用内置的包,给tempimg写入数据
       dbms_lob.fileopen(tempdir);--打开指定文件
       dbms_lob.loadfromfile(tempimg,tempdir,dbms_lob.getlength(tempdir));
       dbms_lob.fileclose(tempdir);--关闭文件
       
       dbms_output.put_line('恭喜你,终于成功了!!!');
       
       commit;
 end ;
 
 select * from test001
 
 select * from dba_directories
 
 
 --将Blob对象,写成磁盘文件
 declare
        l_file utl_file.file_type;--定义写入磁盘文件的类型和格式
        l_buffer raw(32767);--定义缓冲区大小
        l_amount binary_integer := 3276; --每次位移个数
        l_pos int :=1;--开始位置
        l_blob blob;--临时数据存放
        l_blob_len int;--总长度
 begin
        select content into l_blob from test001; --将数据库中的数据,存放在blob变量中
        
        --获取blob文件的长度
        l_blob_len := dbms_lob.getlength(l_blob);
        
        --准备写入磁盘文件
        l_file := utl_file.fopen('TEST_DIR','HHAHAHAHAHAHAHAHAAHA.JPG','wb');
        
        --写入数据
        while l_pos<l_blob_len loop       
              dbms_lob.read(l_blob,l_amount,l_pos,l_buffer);             
              utl_file.put_raw(l_file,l_buffer,true);             
              l_pos := l_pos + l_amount;       
        end loop;
               
        utl_file.fclose(l_file);       
        dbms_output.put_line('恭喜,恭喜。。。。文件写成功!');       
 end;
 
 
 /*
 文本大对象的写入和读取(clob)。
 */
 --写入文本文件第一种方式
 declare
       tempimg clob;--定义临时变量存放数据
       tempdir bfile := bfilename('TEST_DIR','DIV3.html');--非常重要:所有数据都是大写存放的
       amount int:=dbms_lob.getlength(tempdir);
       src_offset int:=1;
       dest_offset int:=1;
       csid int:=0;
       lc int:=0;
       warning int;
 begin      
       insert into test002 values ('第四个文本文件',empty_clob()) returning content into tempimg;
       
       --使用内置的包,给tempimg写入数据
       dbms_lob.fileopen(tempdir);--打开指定文件
       
       dbms_lob.loadclobfromfile(tempimg,tempdir,amount,dest_offset,src_offset,csid,lc,warning);
       
       dbms_lob.fileclose(tempdir);--关闭文件
       
       dbms_output.put_line('恭喜你,终于成功了!!!');
       
       commit;
 end ;
 
 --写入文本文件第二种方式(通过异常判断文件结束的)
 declare
     filecontent clob;
     input_file utl_file.file_type;
     buffer varchar2(2000);
     l_pos int := 1;
     amount int;
 begin
     insert into test002 values ('第二个文本数据',empty_clob()) returning content into filecontent;
     --打开磁盘文件
     input_file := utl_file.fopen('TEST_DIR','DIV3.html','r');
     
     loop                  
          utl_file.get_line(input_file,buffer);
          
          --获取每次读取的长度
          amount:=length(buffer);--每次写入的字符长度
          
          exit when amount<=0;
          
          dbms_lob.write(filecontent,amount,l_pos,buffer);
          
          l_pos:=l_pos+amount;
          
     end loop;
     
     utl_file.fclose(input_file);
     
     dbms_output.put_line('文件写入完毕!');
 
 exception
     when no_data_found then
     dbms_output.put_line('数据已经读取完毕了!');
     utl_file.fclose(input_file);
 end;
 
 
 select * from test002
 
 
 
 
 --读取表中的数据,到文件
 declare
     src clob;
     outfile utl_file.file_type;
     length integer;
     buffer varchar2(8000);
 begin
     select content into src from test002 where fname='第四个文本文件';
     
     length := dbms_lob.getlength(src);
     
     dbms_lob.read(src,length,1,buffer);
     
     --打开磁盘文件
     outfile := utl_file.fopen('TEST_DIR','hahahahhahahahah.html','w',8000);
     
     utl_file.put(outfile,buffer);--写入数据
     
     utl_file.fclose(outfile); --关闭指针
     
     dbms_output.put_line('文件已经写入完毕!');
 end;

ORACLE大对象存储的更多相关文章

  1. JAVA操作ORACLE大对象

    一:操作CLOB  (1)数据库表结构如下:         create table CLOB_TEST      (         ID      VARCHAR2(5) not null,   ...

  2. 【巨杉数据库Sequoiadb】巨杉⼯具系列之一 | ⼤对象存储⼯具sdblobtool

    近期,巨杉数据库正式推出了完整的SequoiaDB 工具包,作为辅助工具,更好地帮助大家使用和运维管理分布式数据库.为此,巨杉技术社区还将持续推出工具系列文章,帮助大家了解巨杉数据库丰富的工具矩阵. ...

  3. oracle对大对象类型操作:blob,clob,nclob

     1.基本介绍 Oracle和plsql都支持lob(large object) 类型,用来存储大数量数据,如图像文件,声音文件等.Oracle 9i realse2支持存储最大为4g的数据,or ...

  4. Oracle LOB 大对象处理

    LOB类型列主要是用来存储大量数据的数据库字段,最大可以存储4G字节的非结构化数据. 一.LOB数据类型分类 1.按存储数据的类型分: ①字符类型:   CLOB:存储大量 单字节 字符数据.   N ...

  5. [转帖]Oracle数据库lob大对象数据类型字段总结,值得收藏

    Oracle数据库lob大对象数据类型字段总结,值得收藏 原创 波波说运维 2019-07-11 00:02:00 https://www.toutiao.com/i67108943269703357 ...

  6. Oracle数据库中的大对象(LOB)数据类型介绍

    一.LOB数据类型的介绍 大对象(LOB)数据类型允许我们保存和操作非结构化和半结构化数据,如文档.图形图像.视频片段.声音文件和XML文件等.DMBS_LOB 包被设计用于操作 LOB 数据类型.从 ...

  7. BLOB:大数据,大对象,在数据库中用来存储超长文本的数据,例如图片等

    将一张图片存储在mysql中,并读取出来(BLOB数据:插入BLOB类型的数据必须使用PreparedStatement,因为插入BLOB类型的数据无法使用字符串拼写): -------------- ...

  8. 使用JDBC处理Oracle大数据

    一.Oracle中大数据处理 在Oracle中,LOB(Large Object,大型对象)类型的字段现在用得越来越多了.因为这种类型的字段,容量大(最多能容纳4GB的数据),且一个表中可以有多个这种 ...

  9. 利用jdbc处理oracle大数据---大文件和二进制文件

    一.Oracle中大数据处理 在Oracle中,LOB(Large Object,大型对象)类型的字段现在用得越来越多了.因为这种类型的字段,容量大(最多能容纳4GB的数据),且一个表中可以有多个这种 ...

随机推荐

  1. 国人开发的api测试工具 ApiPost

    挺好用的 ApiPost https://www.apipost.cn/download.html 需要注册,免费试用.感觉比postman好用

  2. postgresql 臭氧8小时聚合函数

    1.定义数据拼接函数 CREATE OR REPLACE FUNCTION "public"."sfun"("results" _numer ...

  3. linux安装6.5.3版本elastic search

    到官网https://www.elastic.co/cn/downloads/elasticsearch下载压缩包,目前最新的版本是7.3.2,我想下6.5.3,点击下面的past release链接 ...

  4. ES6深入浅出-3 三个点运算 & 新版字符串-1.函数与对象的语法糖

    主要讲的内容 时间充裕的话就讲,模板字面量 默认参数值 首先讲es6之前,我们是怎么做的.例如我们要写一个求和的函数, 请两个参数的和,但是如果有的人就是穿一个参数呢? 那么b没有传值,b的值是多少呢 ...

  5. 123457123456#0#-----com.tym.myNewShiZi45--前拼后广--识字tym

    com.tym.myNewShiZi45--前拼后广--识字tym

  6. Spring Cloud API网关服务 5.2

    为什么需要API网关 通过前面内容的学习,我们已经可以构建一个简单的微服务架构系统.这个系统可以使用Spring Boot实现微服务的开发,使用Spring Cloud Eureka实现注册中心以及服 ...

  7. 【prometheus 抓取源】

    配置prometheus从prometheus爬取数据 prometheus提供了下面这个端口来让其他prometheus来抓取(scrape)自己的时序数据: http://prometheus_i ...

  8. [转]C++ STL中的Binary search(二分查找)

    链接地址:https://www.cnblogs.com/wkfvawl/p/9475939.html

  9. ASP.NET(C#)图片加文字、图片水印,神啊,看看吧

    ASP.NET(C#)图片加文字.图片水印 一.图片上加文字: //using System.Drawing; //using System.IO; //using System.Drawing.Im ...

  10. js 延迟函数

    1.对于 setTimeout函数 普通函数: 100ms后执行时,this指向window对象. function foo(){ setTimeout(function(){ console.log ...