将文件存为blob或者bfile字段

create user test identified by test default tablespace tbs_ls_data temporary tablespace temp;
GRANT DBA TO TEST;
grant create any directory to test;
grant create any library to test;
create table bfile_tab(bfile_column bfile);
create table blob_tab(blob_column blob);
create or replace directory UTLLOBDIR as '/home/oracle/test';

DECLARE
  v_blob  BLOB;
  v_bfile BFILE := bfilename('UTLLOBDIR', 'test.doc');
BEGIN
  INSERT INTO bfile_tab (bfile_column) VALUES (v_bfile) RETURNING bfile_column   into   v_bfile;
  INSERT INTO blob_tab (blob_column) VALUES (empty_blob()) RETURNING blob_column INTO v_blob;
  dbms_lob.fileopen(v_bfile);
  dbms_lob.loadfromfile(DEST_LOB => v_blob,SRC_LOB => v_bfile,AMOUNT =>  dbms_lob.getlength(v_bfile));
  dbms_lob.fileclose(v_bfile);
  COMMIT;
END;
/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值