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: Connect by dumps

Re: Connect by dumps

From: VC <boston103_at_hotmail.com>
Date: Fri, 14 Nov 2003 01:18:16 GMT
Message-ID: <s3Wsb.140331$mZ5.968186@attbi_s54>


Hello,

In 9i:

select * from t1
  connect by parent = prior child
    start with parent=1
    order siblings by child desc

In 8i, one has to write a function to do that.

Rgds.

"foolishHurts" <silverback_at_photobooks.com> wrote in message news:d587rvks328l3frfav7nthonbbmvn0tgj8_at_4ax.com...
> Thanks for a great way to get a hierarchy.
> BUT... Give a mouse a cookie and it wants a glass of milk.
> There is one thing I can not find.
>
> Given data as follows, I would like to control the order of traversal such
> that child 3 is traversed before child 2 (same tree structure, reverse
> order) :
>
> The ability to psudo order within child grouping would allow me to blow
off
> other tools and just do the whole thing in SQLPLUS.
>
> Thanks,
>
> Evan
>
> --- Raw Data
> PARENT CHILD
> ---------- ----------
> 1 2
> 1 3
> 2 4
> 2 5
> 3 6
> 3 7
> 4
> 5 8
> 5 9
> 6
> 7
> 8
> 9
> --- Result of
> SELECT parent, child
> FROM parents
> START WITH parent = 1
> CONNECT BY prior child = parent;
>
> PARENT CHILD
> ---------- ----------
> 1 2
> 2 4
> 4
> 2 5
> 5 8
> 8
> 5 9
> 9
> 1 3
> 3 7
> 7
> 3 6
> 6
>
> Desired result....
> PARENT CHILD
> ---------- ----------
> 1 3
> 3 6
> 6
> 3 7
> 7
> 1 2
> 2 5
> 5 9
> 9
> 5 8
> 8
> 2 4
> 4
>
>
> On Thu, 13 Nov 2003 13:22:18 +0000 (UTC), Lucyna Witkowska
> <ypwitkow_at_nospamcyf-kr.edu.pl> wrote:
>
> >Ray <rbujarski_at_hotmail.com> wrote:
> >
> >> create view treepath
> >> as
> >> SELECT parent, child
> >> FROM td_view_dependants
> >> START WITH parent in (select parent from td_view_dependants)
> >> CONNECT BY child = prior parent
> >
> >> However the results from this are p1 has p2 and p2, p2 has p3.
> >
> >If you want start with p1 just write:
> >START WITH parent = 'p1'
> >
> >If you want to go down the tree:
> >CONNECT BY PRIOR child = parent
> >
> >greetings,
> >LW
>
Received on Thu Nov 13 2003 - 19:18:16 CST

Original text of this message

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