651 reputation
320
bio website cosenonjaviste.it
location Italy
age 37
visits member for 1 year
seen 4 hours ago
stats profile views 50

More about me on www.cosenonjaviste.it Twitter: @trapo1975


May
13
revised While launching my RCP application I am getting this error?
Spelling, puntuaction, added tag
May
13
suggested suggested edit on While launching my RCP application I am getting this error?
May
13
revised Objective c - transform a view from lying to standing
edited tags
May
13
revised Eclipse Auto code completion
added tag, fixed grammar and spelling
May
13
suggested suggested edit on Eclipse Auto code completion
May
12
revised jbuilder wiki description
added 282 characters in body
May
12
revised jbuilder wiki excerpt
added 64 characters in body
May
12
comment Single App for iPhone and iPad
possible duplicate of stackoverflow.com/questions/2884391/… ?
May
12
revised Blend MPMovieplayerController in background UIImageView
tags, formatted inline code
May
12
suggested suggested edit on Blend MPMovieplayerController in background UIImageView
May
12
wiki created jbuilder description
May
12
wiki created jbuilder excerpt
May
12
suggested suggested edit on jbuilder tag wiki
May
12
suggested suggested edit on jbuilder tag wiki excerpt
May
12
revised Eclipse 4.2 Juno doesn't find JRE
Retagged, capitalization of names, edited title
May
12
suggested suggested edit on Eclipse 4.2 Juno doesn't find JRE
May
12
revised How to get the Button's icon coresponding to the current state it is in?
added tag, formatted inline code, minor fixes.
May
12
suggested suggested edit on How to get the Button's icon coresponding to the current state it is in?
May
12
comment How to get all values in hierarchy linked to some value using Oracle CONNECT BY
Or simplier, you could get the result of the query I provided to you and apply again the query on all results until your set does not change. For example. If you start with 4, you get 2,3,4,6,7. Apply query again on 2,3,6,7. When you apply on 2, you see that result is 1,2,3,4,5,6,7 and this does not change any more
May
12
comment How to get all values in hierarchy linked to some value using Oracle CONNECT BY
You asked for 2 ;). Seriously, if you want a general solution to this problem, I think you have to go procedural with PL/SQL o whatever language you prefer. IIRC, I think you have formulated this classical computer science problem: en.wikipedia.org/wiki/…. So pick up any implementation you can find of it, load data from db and once you have strongly connected components, you have the result you have only to find the SCC of an element. Of course if you can do assumptions on your model, perhaps you can avoid this algorithm.