Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Loading BLOB / CLOB
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
![]() |
![]() |