ClubEnsayos.com - Ensayos de Calidad, Tareas y Monografias
Buscar

Manejo De Datos Blob En Oracle


Enviado por   •  16 de Octubre de 2013  •  269 Palabras (2 Páginas)  •  611 Visitas

Página 1 de 2

--set serveroutput on

--create table compress_blob (indx integer, y blob);

--create directory MYDIR as 'C:\temp';

--We assume the user doing this will have read/write on MYDIR

--Copy a file into the directory, e.g., A_57KB_Word_doc.doc

--This block will take care of the insert for you, or you

--could create a separate procedure to do this

--This is simple code, does not address other PL/SQL errors

DECLARE

ablob blob;

abfile bfile := bfilename('CARGUE_ARCHIVOS', 'Formato1_2013_09_01102013_081618.csv');

-- Gets a pointer to the file.

a_compressed_blob blob;

amount integer;

asize integer;

quality integer := 9;

cursor blob_cur is select * from compress_blob;

BEGIN

--

-- compress_blob table is initialized with one record because

-- the PL/SQL BLOB locator (ablob) must point to a specific

-- EXISTING NON-NULL database BLOB.

--

-- initialize the blob locator

insert into compress_blob values (1, empty_blob());

select y into ablob from compress_blob where indx = 1;

-- open the bfile and get the initial file size

dbms_lob.fileopen(abfile);

asize := dbms_lob.getlength(abfile);

dbms_output.put_line('Size of input file: ' || asize);

-- load the file and get the size

dbms_lob.loadfromfile(ablob, abfile, asize);

dbms_output.put_line('After loadfromfile');

asize := dbms_lob.getlength(ablob);

...

Descargar como (para miembros actualizados)  txt (2 Kb)  
Leer 1 página más »
Disponible sólo en Clubensayos.com