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 -> Is it possible in SQL or PL/SQL

Is it possible in SQL or PL/SQL

From: toto <parag9i_at_gmail.com>
Date: 4 Apr 2006 00:02:50 -0700
Message-ID: <1144134170.684246.98670@i40g2000cwc.googlegroups.com>


Hi,

I am using Oracle 9.2 database. I am having following data

drop table toto;
create table toto
(

r char(10)
)
organization external
(

type oracle_loader
default directory data_dir
access parameters
(

    records delimited by newline
    logfile data_dir:'toto.log'
)
location ('pp.sysout')
)
reject limit unlimited
/

In pp.sysout I am having following data

A
B
C
D=10
E
F
G
A
B
C
D=20
E
F
G
H
I
A
B
C
D=20
E
F
G
H
A
B
C
D=30
E
F
G
H

I want set of results in a different spool file starting from 'A' upto next 'A'
where value of 'D' is unique.

For e.g.
1. spool file xxx.1 will contain
A
B
C
D=10
E
F
G

2. spool file xxx.2 will contain ( it will have two sets because D=20 appearing
twice in data )

A
B
C
D=20
E
F
G
H
I
A
B
C
D=20
E
F
G
H

3. spool file xxx.3 will contain

A
B
C
D=30
E
F
G
H

Kindly let me know is it possible to do that ? if yes pl show me how.

thanks & regards
pjp Received on Tue Apr 04 2006 - 02:02:50 CDT

Original text of this message

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