Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Loading BLOB / CLOB

Re: Loading BLOB / CLOB

From: Daniel Morgan <dmorgan_at_exesolutions.com>
Date: Mon, 06 May 2002 23:29:41 GMT
Message-ID: <3CD711DE.ABEB4D27@exesolutions.com>


Thomas Ruschival wrote:

> Hi,
>
> I don't know, didn't find the right information about "how to load LOB
> (BLOB/CLOB) into the Database".
> OK, I have binary Data and Character in Files > 500 MB. How can I load this
> stream into a BLOB Field in the Database?
> - BTW I can't use SQLJ or any Java classes because there is no JServer
> option on this Oracle 8.1.7 Instance.
>
> Thanks alot
>
> Thomas

I've been accused lately of not being helpful so I've decided to turn over a new leaf.

Here the BLOB loading demo straight from my University of Washington web site:

src_file BFILE;
dst_file BLOB;
lgh_file BINARY_INTEGER;

BEGIN
   src_file := bfilename('CTEMP', fname);

   COMMIT;
END load_file;
/

Daniel Morgan Received on Mon May 06 2002 - 18:29:41 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US