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

Home -> Community -> Usenet -> c.d.o.server -> Re: SQLLDR loading BLOBS

Re: SQLLDR loading BLOBS

From: Yong Huang <yhuang_at_indigopool.com>
Date: Tue, 29 Aug 2000 15:35:17 -0500
Message-ID: <8oh6vm$g2q$1@news.sinet.slb.com>

Here's my sqlldr control file:

LOAD DATA
INFILE 'loadfile.dat'
append
INTO TABLE file_attachment

   FIELDS TERMINATED BY ','

   (object_id           integer external,
    object_type_id      integer external,
    section_id          integer external,
    section_sequence_no integer external,
    file_descr          char,
    file_name           char,
    file_type           char,
    file_size_bytes     integer external,
    attachment_file     LOBFILE(file_name) TERMINATED BY EOF)

and my loadfile.dat is:

3,5,169,1,,_7_bkgrnd3.jpg,jpg,25306,_7_bkgrnd3.jpg, ...

My jpg files are in the current directory.

Yong Huang
yhuang_at_indigopool.com

<don_leclaire_at_my-deja.com> wrote in message news:8oeu7h$gv6$1_at_nnrp1.deja.com...
> I am trying to load a variable length JPEG's
> into an Oracle 8i database using SQLLDR, these are
> coming from a flat file and I need to know if anyone has
> completed this..
>
> I need to know how to do this or if the JPEG format has a
> reserve character that I can delimit with
>
> Or is it possible to use a multiple character delimiter
>
> HELP HELP HELP!!!!!!!
>
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
Received on Tue Aug 29 2000 - 15:35:17 CDT

Original text of this message

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